Typo.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Tue, 4 Sep 2012 18:44:43 +0000 (18:44 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Tue, 4 Sep 2012 18:44:43 +0000 (18:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163154 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/MachineInstr.cpp

index 235cf96b1d5368e47e9978923c2a1de0c7decfed..5e5ed0b01f4676f5d8bddf20f1d3d3a39772e764 100644 (file)
@@ -1318,7 +1318,7 @@ bool MachineInstr::isSafeToMove(const TargetInstrInfo *TII,
   // Ignore stuff that we obviously can't move.
   //
   // Treat volatile loads as stores. This is not strictly necessary for
-  // volatiles, but it is required for atomic loads. It is now allowed to move
+  // volatiles, but it is required for atomic loads. It is not allowed to move
   // a load across an atomic load with Ordering > Monotonic.
   if (mayStore() || isCall() ||
       (mayLoad() && hasOrderedMemoryRef())) {