diff options
author | Jon Roelofs <jonathan_roelofs@apple.com> | 2020-08-20 14:56:57 -0600 |
---|---|---|
committer | Jon Roelofs <jonathan_roelofs@apple.com> | 2020-08-20 14:56:57 -0600 |
commit | 74ca5275e9509e5ec4e9f1d9123bc10674734b20 (patch) | |
tree | ba765a127d664c250023b78e50e577e73df2fa9f /llvm/lib/CodeGen/MachineInstr.cpp | |
parent | cff0db08761f310dfebb5b41b307d2c12bda85fc (diff) | |
download | llvm-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.cpp | 2 |
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)) |