[llvm-commits] CVS: llvm/lib/Transforms/IPO/ConstantMerge.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Sep 10 00:30:01 PDT 2003
Changes in directory llvm/lib/Transforms/IPO:
ConstantMerge.cpp updated: 1.19 -> 1.20
---
Log message:
Fix spell-o's
---
Diffs of the changes:
Index: llvm/lib/Transforms/IPO/ConstantMerge.cpp
diff -u llvm/lib/Transforms/IPO/ConstantMerge.cpp:1.19 llvm/lib/Transforms/IPO/ConstantMerge.cpp:1.20
--- llvm/lib/Transforms/IPO/ConstantMerge.cpp:1.19 Thu Apr 17 23:34:29 2003
+++ llvm/lib/Transforms/IPO/ConstantMerge.cpp Wed Sep 10 00:29:00 2003
@@ -46,7 +46,7 @@
if (I == CMap.end()) { // Nope, add it to the map
CMap.insert(I, std::make_pair(Init, GV));
} else { // Yup, this is a duplicate!
- // Make all uses of the duplicate constant use the cannonical version...
+ // Make all uses of the duplicate constant use the canonical version...
GV->replaceAllUsesWith(I->second);
// Delete the global value from the module... and back up iterator to
More information about the llvm-commits
mailing list