[llvm-commits] [llvm] r110455 - /llvm/trunk/lib/Analysis/AliasAnalysis.cpp
Dan Gohman
gohman at apple.com
Fri Aug 6 11:10:45 PDT 2010
Author: djg
Date: Fri Aug 6 13:10:45 2010
New Revision: 110455
URL: http://llvm.org/viewvc/llvm-project?rev=110455&view=rev
Log:
Fix a comment.
Modified:
llvm/trunk/lib/Analysis/AliasAnalysis.cpp
Modified: llvm/trunk/lib/Analysis/AliasAnalysis.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/AliasAnalysis.cpp?rev=110455&r1=110454&r2=110455&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/AliasAnalysis.cpp (original)
+++ llvm/trunk/lib/Analysis/AliasAnalysis.cpp Fri Aug 6 13:10:45 2010
@@ -210,8 +210,8 @@
AliasAnalysis::ModRefResult
AliasAnalysis::getModRefInfo(const StoreInst *S, const Value *P, unsigned Size) {
- // If the stored address cannot alias the pointer in question, then the
- // pointer cannot be modified by the store.
+ // If the store address cannot alias the pointer in question, then the
+ // specified memory cannot be modified by the store.
if (!alias(S->getOperand(1),
getTypeStoreSize(S->getOperand(0)->getType()), P, Size))
return NoModRef;
More information about the llvm-commits
mailing list