summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-10-25 23:56:21 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-10-25 23:56:21 +0000
commit43d6f34e9fe760ee61b4e6437873521d52909963 (patch)
tree9a15d81b080112b4ed546b6441202b8e54eef72a /llvm/lib
parentdc2c4db5981f3362c0c413cdf445f15d9810696a (diff)
downloadbcm5719-llvm-43d6f34e9fe760ee61b4e6437873521d52909963.tar.gz
bcm5719-llvm-43d6f34e9fe760ee61b4e6437873521d52909963.zip
Neuter r117193 as it causes significant post-ra scheduler compile time regression.
llvm-svn: 117329
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/CodeGen/ScheduleDAGInstrs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp b/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
index 6b1a59b5ea8..9b5d13b1200 100644
--- a/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
+++ b/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
@@ -169,8 +169,8 @@ void ScheduleDAGInstrs::AddSchedBarrierDeps() {
} else {
// For others, e.g. fallthrough, conditional branch, assume the exit
// uses all the registers.
- for (int i = 0, e = TRI->getNumRegs(); i != e; ++i)
- Uses[i].push_back(&ExitSU);
+ // FIXME: This causes too much compile time regression. We need to compute
+ // liveout instead.
}
}
OpenPOWER on IntegriCloud