diff options
Diffstat (limited to 'src/compiler/CompilerIR.h')
| -rw-r--r-- | src/compiler/CompilerIR.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/CompilerIR.h b/src/compiler/CompilerIR.h index 7420bda332..1ecf61aef5 100644 --- a/src/compiler/CompilerIR.h +++ b/src/compiler/CompilerIR.h @@ -420,6 +420,7 @@ struct CompilationUnit {        irb(NULL),        placeholderBB(NULL),        entryBB(NULL), +      entryTargetBB(NULL),        tempName(0),        requireShadowFrame(false),        numShadowFrameEntries(0), @@ -589,6 +590,7 @@ struct CompilationUnit {    greenland::IRBuilder* irb;    llvm::BasicBlock* placeholderBB;    llvm::BasicBlock* entryBB; +  llvm::BasicBlock* entryTargetBB;    std::string bitcode_filename;    GrowableList llvmValues;    int32_t tempName;  |