diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-09-04 18:44:43 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-09-04 18:44:43 +0000 |
commit | d92e2bc2e9b11e9ced2fddac25620b82de2f218a (patch) | |
tree | eb7a63456d9bb6998f00aaee78434de607e1a425 | |
parent | 9fceda741df3de685ded25a5a81c5f9eb0b79964 (diff) | |
download | bcm5719-llvm-d92e2bc2e9b11e9ced2fddac25620b82de2f218a.tar.gz bcm5719-llvm-d92e2bc2e9b11e9ced2fddac25620b82de2f218a.zip |
Typo.
llvm-svn: 163154
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 235cf96b1d5..5e5ed0b01f4 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -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())) { |