mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
rename "elements" of metadata to "operands". "Elements" are
things that occur in types. "operands" are things that occur in values. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92322 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -360,9 +360,9 @@ static MDNode *UpdateInlinedAtInfo(MDNode *InsnMD, MDNode *TheCallMD) {
|
||||
NewLoc = UpdateInlinedAtInfo(OrigLocation.getNode(), TheCallMD);
|
||||
|
||||
Value *MDVs[] = {
|
||||
InsnMD->getElement(0), // Line
|
||||
InsnMD->getElement(1), // Col
|
||||
InsnMD->getElement(2), // Scope
|
||||
InsnMD->getOperand(0), // Line
|
||||
InsnMD->getOperand(1), // Col
|
||||
InsnMD->getOperand(2), // Scope
|
||||
NewLoc
|
||||
};
|
||||
return MDNode::get(InsnMD->getContext(), MDVs, 4);
|
||||
|
Reference in New Issue
Block a user