projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
93ef3fd
)
Neuter r117193 as it causes significant post-ra scheduler compile time regression.
author
Evan Cheng
<evan.cheng@apple.com>
Mon, 25 Oct 2010 23:56:21 +0000
(23:56 +0000)
committer
Evan Cheng
<evan.cheng@apple.com>
Mon, 25 Oct 2010 23:56:21 +0000
(23:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117329
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/ScheduleDAGInstrs.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/ScheduleDAGInstrs.cpp
b/lib/CodeGen/ScheduleDAGInstrs.cpp
index 6b1a59b5ea8c041b7c54f080fd39f8cdb67a22be..9b5d13b12008319e628d30c24c1ab4f651228648 100644
(file)
--- a/
lib/CodeGen/ScheduleDAGInstrs.cpp
+++ b/
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.
}
}