mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-08 00:24:25 +00:00
Make LoadAndStorePromoter preserve debug info and create llvm.dbg.values when
promoting allocas to SSA variables. Fixes <rdar://problem/9479036>. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131953 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -100,18 +100,6 @@ bool llvm::isAllocaPromotable(const AllocaInst *AI) {
|
||||
return true;
|
||||
}
|
||||
|
||||
/// FindAllocaDbgDeclare - Finds the llvm.dbg.declare intrinsic describing the
|
||||
/// alloca 'V', if any.
|
||||
static DbgDeclareInst *FindAllocaDbgDeclare(Value *V) {
|
||||
if (MDNode *DebugNode = MDNode::getIfExists(V->getContext(), V))
|
||||
for (Value::use_iterator UI = DebugNode->use_begin(),
|
||||
E = DebugNode->use_end(); UI != E; ++UI)
|
||||
if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(*UI))
|
||||
return DDI;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
namespace {
|
||||
struct AllocaInfo;
|
||||
|
||||
|
Reference in New Issue
Block a user