[llvm-commits] CVS: llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp
Reid Spencer
reid at x10sys.com
Wed May 4 08:33:59 PDT 2005
Changes in directory llvm/projects/Stacker/lib/compiler:
StackerCompiler.cpp updated: 1.14 -> 1.15
---
Log message:
WHILE does not "pop" a value, it "examines" to top of stack. Make this
clear in the applicable comment.
---
Diffs of the changes: (+1 -1)
StackerCompiler.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp
diff -u llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp:1.14 llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp:1.15
--- llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp:1.14 Sat Apr 23 16:26:10 2005
+++ llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp Wed May 4 10:33:48 2005
@@ -799,7 +799,7 @@
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
More information about the llvm-commits
mailing list