diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-06-16 07:35:02 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-06-16 07:35:02 +0000 |
commit | 160f30cd4ff881f768384f38f1b9d7694faa0b40 (patch) | |
tree | 7a7225e258b7af507f92aec209f538b3bcf78671 /lib/CodeGen/PostRAHazardRecognizer.cpp | |
parent | 87304bfe469ec55fce6cc37c625b8db2b8f8aba3 (diff) | |
download | external_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.cpp | 2 |
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; |