From b5497338fac5764c5ea2a40eab0124bb20d50526 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Thu, 15 Mar 2012 21:33:47 +0000 Subject: [PATCH] We actually handle AllocaInst via getRegForValue below just fine. Part of rdar://8905263 llvm-svn: 152845 --- lib/CodeGen/SelectionDAG/FastISel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index ff8e78757dc..b5470bbd7a5 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -583,7 +583,7 @@ bool FastISel::SelectCall(const User *I) { } const Value *Address = DI->getAddress(); - if (!Address || isa(Address) || isa(Address)) { + if (!Address || isa(Address)) { DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); return true; }