aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/RegisterScavenging.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-06-04 20:18:30 +0000
committerJim Grosbach <grosbach@apple.com>2010-06-04 20:18:30 +0000
commit1c8ab781d5b24bc473b4baa8f3fb6e9b55597aa3 (patch)
tree5f721bbff17acb6b31b66954f7a8d4a99ad7cfe8 /lib/CodeGen/RegisterScavenging.cpp
parentc87b40b1cd2a6b6ce3608bc81a199b5005edc373 (diff)
downloadexternal_llvm-1c8ab781d5b24bc473b4baa8f3fb6e9b55597aa3.zip
external_llvm-1c8ab781d5b24bc473b4baa8f3fb6e9b55597aa3.tar.gz
external_llvm-1c8ab781d5b24bc473b4baa8f3fb6e9b55597aa3.tar.bz2
Skip dbg_value instructions when scanning instructions in register scavenging.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegisterScavenging.cpp')
-rw-r--r--lib/CodeGen/RegisterScavenging.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/RegisterScavenging.cpp b/lib/CodeGen/RegisterScavenging.cpp
index 690e59f..b3e7975 100644
--- a/lib/CodeGen/RegisterScavenging.cpp
+++ b/lib/CodeGen/RegisterScavenging.cpp
@@ -258,6 +258,10 @@ unsigned RegScavenger::findSurvivorReg(MachineBasicBlock::iterator StartMI,
bool inVirtLiveRange = false;
for (++MI; InstrLimit > 0 && MI != ME; ++MI, --InstrLimit) {
+ if (MI->isDebugValue()) {
+ ++InstrLimit; // Don't count debug instructions
+ continue;
+ }
bool isVirtKillInsn = false;
bool isVirtDefInsn = false;
// Remove any candidates touched by instruction.