summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-01-14 01:17:53 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-01-14 01:17:53 +0000
commit09befe90360effa077b1934c0e85e5b7abe00a9c (patch)
tree043e78f3a84a5c65d45f8592c16f480cdc9a4787 /lib/CodeGen/MachineBasicBlock.cpp
parentc5f608b49c2f003d9a6995f6d39d36efe34927fe (diff)
downloadllvm-09befe90360effa077b1934c0e85e5b7abe00a9c.tar.gz
llvm-09befe90360effa077b1934c0e85e5b7abe00a9c.tar.bz2
llvm-09befe90360effa077b1934c0e85e5b7abe00a9c.tar.xz
Try again to teach getFirstTerminator() about debug values.
Fix some callers to better deal with debug values. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123419 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r--lib/CodeGen/MachineBasicBlock.cpp21
1 files changed, 16 insertions, 5 deletions
diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp
index ad1ab287e3..36963875f9 100644
--- a/lib/CodeGen/MachineBasicBlock.cpp
+++ b/lib/CodeGen/MachineBasicBlock.cpp
@@ -155,11 +155,22 @@ MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) {
}
MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
- iterator I = end();
- while (I != begin() && (--I)->getDesc().isTerminator())
- ; /*noop */
- if (I != end() && !I->getDesc().isTerminator()) ++I;
- return I;
+ iterator B = begin(), I = end();
+ iterator Term = I;
+ while (I != B) {
+ --I;
+ // Ignore any debug values after the first terminator.
+ if (I->isDebugValue())
+ continue;
+ // Stop once we see a non-debug non-terminator.
+ if (!I->getDesc().isTerminator())
+ break;
+ // Earliest terminator so far.
+ Term = I;
+ }
+ // Return the first terminator, or end().
+ // Everything after Term is terminators and debug values.
+ return Term;
}
MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() {