diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-10 05:29:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-10 05:29:43 +0000 |
commit | 065a616adad624152618b1b0084ff074e5b03bbb (patch) | |
tree | fc927194de6b9d2f1af7a559ff3f64d524e43aa3 /lib/Transforms/IPO/ConstantMerge.cpp | |
parent | 3adf51d022348b06a1adeef7649fa35928ad9358 (diff) |
Fix spell-o's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8431 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/ConstantMerge.cpp')
-rw-r--r-- | lib/Transforms/IPO/ConstantMerge.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/ConstantMerge.cpp b/lib/Transforms/IPO/ConstantMerge.cpp index 0774cf2894..8372d3e0a6 100644 --- a/lib/Transforms/IPO/ConstantMerge.cpp +++ b/lib/Transforms/IPO/ConstantMerge.cpp @@ -46,7 +46,7 @@ bool ConstantMerge::run(Module &M) { 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 |