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 | 216c7b8aedbf4c3f5a60835c75872ddc35cfc3e4 (patch) | |
tree | d211caa84e1e2fffddd6000d9534fefdb8c23db1 /llvm/lib/Transforms/Scalar/LICM.cpp | |
parent | 4e621cd8614d87071cb5146ed4f825936a285b09 (diff) | |
download | bcm5719-llvm-216c7b8aedbf4c3f5a60835c75872ddc35cfc3e4.tar.gz bcm5719-llvm-216c7b8aedbf4c3f5a60835c75872ddc35cfc3e4.zip |
Fix spell-o's
llvm-svn: 8431
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LICM.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LICM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp index 4940566b2a7..416c83e357e 100644 --- a/llvm/lib/Transforms/Scalar/LICM.cpp +++ b/llvm/lib/Transforms/Scalar/LICM.cpp @@ -332,7 +332,7 @@ void LICM::visitLoadInst(LoadInst &LI) { /// void LICM::PromoteValuesInLoop() { // PromotedValues - List of values that are promoted out of the loop. Each - // value has an alloca instruction for it, and a cannonical version of the + // value has an alloca instruction for it, and a canonical version of the // pointer. std::vector<std::pair<AllocaInst*, Value*> > PromotedValues; std::map<Value*, AllocaInst*> ValueToAllocaMap; // Map of ptr to alloca |