[llvm-commits] CVS: llvm/lib/Target/X86/X86ISelPattern.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Mar 29 17:10:16 PST 2005
Changes in directory llvm/lib/Target/X86:
X86ISelPattern.cpp updated: 1.94 -> 1.95
---
Log message:
don't depend on the cfg being set up yet
---
Diffs of the changes: (+1 -1)
X86ISelPattern.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/X86/X86ISelPattern.cpp
diff -u llvm/lib/Target/X86/X86ISelPattern.cpp:1.94 llvm/lib/Target/X86/X86ISelPattern.cpp:1.95
--- llvm/lib/Target/X86/X86ISelPattern.cpp:1.94 Fri Mar 25 19:29:23 2005
+++ llvm/lib/Target/X86/X86ISelPattern.cpp Tue Mar 29 19:10:00 2005
@@ -444,7 +444,7 @@
// basic blocks. This will be a huge win, but we are waiting on the global
// allocators before we can do this.
//
- if (ContainsFPCode && BB->succ_size()) {
+ if (ContainsFPCode) {
BuildMI(*BB, BB->getFirstTerminator(), X86::FP_REG_KILL, 0);
++NumFPKill;
}
More information about the llvm-commits
mailing list