mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-22 10:24:26 +00:00
DIBuilder: Remove dead code
I neglected to update `DIBuilder::createPieceExpression()` in r218797, which I noticed while rebasing a patch for PR17891. On closer inspection, it looks like dead code. If there are any downstream users of this, you should transition to the more general `createExpression()`. Or, we can add this back, but then it should just forward to `createExpression()`. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218820 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1056,20 +1056,6 @@ DIExpression DIBuilder::createExpression(ArrayRef<int64_t> Addr) {
|
||||
return DIExpression(MDNode::get(VMContext, Elts));
|
||||
}
|
||||
|
||||
/// createVariablePiece - Create a descriptor to describe one part
|
||||
/// of aggregate variable that is fragmented across multiple Values.
|
||||
DIExpression DIBuilder::createPieceExpression(unsigned OffsetInBytes,
|
||||
unsigned SizeInBytes) {
|
||||
assert(SizeInBytes > 0 && "zero-size piece");
|
||||
Value *Addr[] = {
|
||||
GetTagConstant(VMContext, DW_TAG_expression),
|
||||
ConstantInt::get(Type::getInt64Ty(VMContext), dwarf::DW_OP_piece),
|
||||
ConstantInt::get(Type::getInt64Ty(VMContext), OffsetInBytes),
|
||||
ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBytes)};
|
||||
|
||||
return DIExpression(MDNode::get(VMContext, Addr));
|
||||
}
|
||||
|
||||
/// createFunction - Create a new descriptor for the specified function.
|
||||
/// FIXME: this is added for dragonegg. Once we update dragonegg
|
||||
/// to call resolve function, this will be removed.
|
||||
|
Reference in New Issue
Block a user