diff options
Diffstat (limited to 'projects/Stacker/lib/compiler')
-rw-r--r-- | projects/Stacker/lib/compiler/StackerCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/Stacker/lib/compiler/StackerCompiler.cpp b/projects/Stacker/lib/compiler/StackerCompiler.cpp index c9a3e62627..d960fc4897 100644 --- a/projects/Stacker/lib/compiler/StackerCompiler.cpp +++ b/projects/Stacker/lib/compiler/StackerCompiler.cpp @@ -799,7 +799,7 @@ StackerCompiler::handle_while( char* todo ) BranchInst* root_br_inst = new BranchInst( test ); bb->getInstList().push_back( root_br_inst ); - // Pop the condition value + // Examine the condition value LoadInst* cond = cast<LoadInst>( stack_top(test) ); // Compare the condition against 0 |