aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineInstr.cpp
diff options
context:
space:
mode:
authorJon Roelofs <jonathan_roelofs@apple.com>2020-08-20 14:56:57 -0600
committerJon Roelofs <jonathan_roelofs@apple.com>2020-08-20 14:56:57 -0600
commit74ca5275e9509e5ec4e9f1d9123bc10674734b20 (patch)
treeba765a127d664c250023b78e50e577e73df2fa9f /llvm/lib/CodeGen/MachineInstr.cpp
parentcff0db08761f310dfebb5b41b307d2c12bda85fc (diff)
downloadllvm-74ca5275e9509e5ec4e9f1d9123bc10674734b20.zip
llvm-74ca5275e9509e5ec4e9f1d9123bc10674734b20.tar.gz
llvm-74ca5275e9509e5ec4e9f1d9123bc10674734b20.tar.bz2
Fix a couple of typos. NFC
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineInstr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp
index 5fbf91e..457db8d 100644
--- a/llvm/lib/CodeGen/MachineInstr.cpp
+++ b/llvm/lib/CodeGen/MachineInstr.cpp
@@ -1217,7 +1217,7 @@ bool MachineInstr::isSafeToMove(AAResults *AA, bool &SawStore) const {
// See if this instruction does a load. If so, we have to guarantee that the
// loaded value doesn't change between the load and the its intended
- // destination. The check for isInvariantLoad gives the targe the chance to
+ // destination. The check for isInvariantLoad gives the target the chance to
// classify the load as always returning a constant, e.g. a constant pool
// load.
if (mayLoad() && !isDereferenceableInvariantLoad(AA))