mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 08:17:40 +00:00
MC: Clean up method names in MCContext.
The naming was a mish-mash of old and new style. Update to be consistent with the new. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237594 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -997,7 +997,7 @@ void DwarfDebug::beginInstruction(const MachineInstr *MI) {
|
||||
return;
|
||||
|
||||
if (!PrevLabel) {
|
||||
PrevLabel = MMI->getContext().CreateTempSymbol();
|
||||
PrevLabel = MMI->getContext().createTempSymbol();
|
||||
Asm->OutStreamer->EmitLabel(PrevLabel);
|
||||
}
|
||||
I->second = PrevLabel;
|
||||
@@ -1025,7 +1025,7 @@ void DwarfDebug::endInstruction() {
|
||||
|
||||
// We need a label after this instruction.
|
||||
if (!PrevLabel) {
|
||||
PrevLabel = MMI->getContext().CreateTempSymbol();
|
||||
PrevLabel = MMI->getContext().createTempSymbol();
|
||||
Asm->OutStreamer->EmitLabel(PrevLabel);
|
||||
}
|
||||
I->second = PrevLabel;
|
||||
|
||||
Reference in New Issue
Block a user