diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-07-28 21:49:18 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-07-28 21:49:18 +0000 |
commit | 4a040410564739c903225c6709d95de4a138c231 (patch) | |
tree | c8d8662501712a89cdb78a36a7c05de72caea240 /llvm/lib/CodeGen/MachineInstr.cpp | |
parent | 3cc120a51e7329a713850f96e613247c8289d389 (diff) | |
download | bcm5719-llvm-4a040410564739c903225c6709d95de4a138c231.tar.gz bcm5719-llvm-4a040410564739c903225c6709d95de4a138c231.zip |
Fix a typo.
llvm-svn: 77369
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-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 8deaa1a35d7..4ac2896d370 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -889,7 +889,7 @@ bool MachineInstr::isSafeToMove(const TargetInstrInfo *TII, // 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; |