- Fixed GCC/Clang compiler errors and warnings.

This commit is contained in:
Edoardo Prezioso 2016-11-29 19:46:38 +01:00
commit 7474be6284
4 changed files with 43 additions and 3 deletions

View file

@ -27,7 +27,7 @@
#include "ssa_value.h"
SSAFunction::SSAFunction(const std::string name)
: name(name), return_type(llvm::Type::getVoidTy(SSAScope::context())), func()
: func(), name(name), return_type(llvm::Type::getVoidTy(SSAScope::context()))
{
}