aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/LiveDebugVariables.cpp
diff options
context:
space:
mode:
authorJordan Rupprecht <rupprecht@google.com>2019-02-23 01:28:32 +0000
committerJordan Rupprecht <rupprecht@google.com>2019-02-23 01:28:32 +0000
commit6387fa27153c04facac184f570f9d4f18b2091f1 (patch)
treeaa875a1b712a459ba925506b79fafaee92de9785 /llvm/lib/CodeGen/LiveDebugVariables.cpp
parente3876637cff9fd254884942bc874232b3fd33178 (diff)
downloadllvm-6387fa27153c04facac184f570f9d4f18b2091f1.zip
llvm-6387fa27153c04facac184f570f9d4f18b2091f1.tar.gz
llvm-6387fa27153c04facac184f570f9d4f18b2091f1.tar.bz2
[NFC] Fix typos: preceeding -> preceding
llvm-svn: 354715
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.cpp')
-rw-r--r--llvm/lib/CodeGen/LiveDebugVariables.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugVariables.cpp b/llvm/lib/CodeGen/LiveDebugVariables.cpp
index f5afa15..eeddba5 100644
--- a/llvm/lib/CodeGen/LiveDebugVariables.cpp
+++ b/llvm/lib/CodeGen/LiveDebugVariables.cpp
@@ -619,7 +619,7 @@ bool LDVImpl::handleDebugValue(MachineInstr &MI, SlotIndex Idx) {
} else {
// The DBG_VALUE is only valid if either Reg is live out from Idx, or Reg
// is defined dead at Idx (where Idx is the slot index for the instruction
- // preceeding the DBG_VALUE).
+ // preceding the DBG_VALUE).
const LiveInterval &LI = LIS->getInterval(Reg);
LiveQueryResult LRQ = LI.Query(Idx);
if (!LRQ.valueOutOrDead()) {