[llvm-commits] [llvm] r54136 - /llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp

Dan Gohman gohman at apple.com
Mon Jul 28 11:43:52 PDT 2008


Author: djg
Date: Mon Jul 28 13:43:51 2008
New Revision: 54136

URL: http://llvm.org/viewvc/llvm-project?rev=54136&view=rev
Log:
Fix a typo in a comment.

Modified:
    llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp

Modified: llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp?rev=54136&r1=54135&r2=54136&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp Mon Jul 28 13:43:51 2008
@@ -816,7 +816,7 @@
     if (!EnableAggressiveRemat)
       return false;
 
-    // If the instruction access memory but the memoperands have been lost,
+    // If the instruction accesses memory but the memoperands have been lost,
     // we can't analyze it.
     const TargetInstrDesc &TID = MI->getDesc();
     if ((TID.mayLoad() || TID.mayStore()) && MI->memoperands_empty())





More information about the llvm-commits mailing list