aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-11-16 22:43:23 +0000
committerDan Gohman <gohman@apple.com>2010-11-16 22:43:23 +0000
commit742bf87efa5c2e8c10c6b12b35b65fec439cea53 (patch)
treee894c08951157f94dfe679007bda2dda0bd7c3e8 /lib
parent221b239342d6089550ad7f49cbf49509111d3f7e (diff)
downloadexternal_llvm-742bf87efa5c2e8c10c6b12b35b65fec439cea53.zip
external_llvm-742bf87efa5c2e8c10c6b12b35b65fec439cea53.tar.gz
external_llvm-742bf87efa5c2e8c10c6b12b35b65fec439cea53.tar.bz2
Reapply r118917. With pseudo-instruction expansion moved to
a different pass, the complicated interaction between cmov expansion and fast isel is no longer a concern. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119400 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/X86/X86FastISel.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp
index b938539..ee66433 100644
--- a/lib/Target/X86/X86FastISel.cpp
+++ b/lib/Target/X86/X86FastISel.cpp
@@ -320,11 +320,11 @@ bool X86FastISel::X86SelectAddress(const Value *V, X86AddressMode &AM) {
// Don't walk into other basic blocks; it's possible we haven't
// visited them yet, so the instructions may not yet be assigned
// virtual registers.
- if (FuncInfo.MBBMap[I->getParent()] != FuncInfo.MBB)
- return false;
-
- Opcode = I->getOpcode();
- U = I;
+ if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(V)) ||
+ FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
+ Opcode = I->getOpcode();
+ U = I;
+ }
} else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
Opcode = C->getOpcode();
U = C;