diff options
author | Eric Christopher <echristo@apple.com> | 2010-01-19 01:20:15 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-01-19 01:20:15 +0000 |
commit | 84bd316bd6d74f1fb416f1896c9d06bc807ce705 (patch) | |
tree | 29310df7b31a9a9679df01044045e963722cfa5f | |
parent | ad27e8b777726ed63f8c8dfbdee1cc40121ead23 (diff) | |
download | bcm5719-llvm-84bd316bd6d74f1fb416f1896c9d06bc807ce705.tar.gz bcm5719-llvm-84bd316bd6d74f1fb416f1896c9d06bc807ce705.zip |
Fix comment.
llvm-svn: 93831
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp b/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp index 6c0ecc9f935..cdb338de853 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp @@ -366,7 +366,7 @@ Instruction *InstCombiner::visitStoreInst(StoreInst &SI) { // alloca dead. // If the RHS is an alloca with a two uses, the other one being a // llvm.dbg.declare, zapify the store and the declare, making the - // alloca dead. We must do this to prevent declare's from affecting + // alloca dead. We must do this to prevent declares from affecting // codegen. if (!SI.isVolatile()) { if (Ptr->hasOneUse()) { |