[llvm-commits] [poolalloc] r136772 - /poolalloc/trunk/lib/DSA/AllocatorIdentification.cpp

Will Dietz wdietz2 at illinois.edu
Wed Aug 3 03:21:14 PDT 2011


Author: wdietz2
Date: Wed Aug  3 05:21:14 2011
New Revision: 136772

URL: http://llvm.org/viewvc/llvm-project?rev=136772&view=rev
Log:
AllocatorIdentification.cpp: Small fix to comment.
No functionality changed.

Modified:
    poolalloc/trunk/lib/DSA/AllocatorIdentification.cpp

Modified: poolalloc/trunk/lib/DSA/AllocatorIdentification.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/lib/DSA/AllocatorIdentification.cpp?rev=136772&r1=136771&r2=136772&view=diff
==============================================================================
--- poolalloc/trunk/lib/DSA/AllocatorIdentification.cpp (original)
+++ poolalloc/trunk/lib/DSA/AllocatorIdentification.cpp Wed Aug  3 05:21:14 2011
@@ -61,7 +61,7 @@
 }
 
 bool isNotStored(Value *V) {
-  // check that V is not stroed to a location taht is accessible outside this fn
+  // check that V is not stored to a location that is accessible outside this fn
   for(Value::use_iterator ui = V->use_begin(), ue = V->use_end();
       ui != ue; ++ui) {
     if(isa<StoreInst>(*ui))





More information about the llvm-commits mailing list