1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

We actually handle AllocaInst via getRegForValue below just fine.

Part of rdar://8905263

llvm-svn: 152845
This commit is contained in:
Eric Christopher 2012-03-15 21:33:47 +00:00
parent f744ea65be
commit b5497338fa

View File

@ -583,7 +583,7 @@ bool FastISel::SelectCall(const User *I) {
}
const Value *Address = DI->getAddress();
if (!Address || isa<UndefValue>(Address) || isa<AllocaInst>(Address)) {
if (!Address || isa<UndefValue>(Address)) {
DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
return true;
}