[llvm-commits] [llvm] r77369 - /llvm/trunk/lib/CodeGen/MachineInstr.cpp

Evan Cheng evan.cheng at apple.com
Tue Jul 28 14:49:19 PDT 2009


Author: evancheng
Date: Tue Jul 28 16:49:18 2009
New Revision: 77369

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

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

Modified: llvm/trunk/lib/CodeGen/MachineInstr.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineInstr.cpp?rev=77369&r1=77368&r2=77369&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/MachineInstr.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineInstr.cpp Tue Jul 28 16:49:18 2009
@@ -889,7 +889,7 @@
   // load.
   if (TID->mayLoad() && !TII->isInvariantLoad(this))
     // Otherwise, this is a real load.  If there is a store between the load and
-    // end of block, or if the laod is volatile, we can't move it.
+    // end of block, or if the load is volatile, we can't move it.
     return !SawStore && !hasVolatileMemoryRef();
 
   return true;





More information about the llvm-commits mailing list