aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/PostRAHazardRecognizer.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-06-16 07:35:02 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-06-16 07:35:02 +0000
commit160f30cd4ff881f768384f38f1b9d7694faa0b40 (patch)
tree7a7225e258b7af507f92aec209f538b3bcf78671 /lib/CodeGen/PostRAHazardRecognizer.cpp
parent87304bfe469ec55fce6cc37c625b8db2b8f8aba3 (diff)
downloadexternal_llvm-160f30cd4ff881f768384f38f1b9d7694faa0b40.zip
external_llvm-160f30cd4ff881f768384f38f1b9d7694faa0b40.tar.gz
external_llvm-160f30cd4ff881f768384f38f1b9d7694faa0b40.tar.bz2
Make post-ra scheduling, anti-dep breaking, and register scavenger (conservatively) aware of predicated instructions. This enables ARM to move if-conversion before post-ra scheduler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106091 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PostRAHazardRecognizer.cpp')
-rw-r--r--lib/CodeGen/PostRAHazardRecognizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/PostRAHazardRecognizer.cpp b/lib/CodeGen/PostRAHazardRecognizer.cpp
index 3690546..cbde2b0 100644
--- a/lib/CodeGen/PostRAHazardRecognizer.cpp
+++ b/lib/CodeGen/PostRAHazardRecognizer.cpp
@@ -72,7 +72,7 @@ void PostRAHazardRecognizer::ScoreBoard::dump() const {
}
}
-PostRAHazardRecognizer::HazardType
+ScheduleHazardRecognizer::HazardType
PostRAHazardRecognizer::getHazardType(SUnit *SU) {
if (ItinData.isEmpty())
return NoHazard;