forked from OSchip/llvm-project
Switch two simple uses of GetTempSymbol to createTempSymbol.
llvm-svn: 232484
This commit is contained in:
parent
ccfbbd5596
commit
3e74cb5937
|
@ -653,8 +653,8 @@ void DwarfStreamer::emitUnitRangesEntries(CompileUnit &Unit,
|
|||
if (!Ranges.empty()) {
|
||||
MS->SwitchSection(MC->getObjectFileInfo()->getDwarfARangesSection());
|
||||
|
||||
MCSymbol *BeginLabel = Asm->GetTempSymbol("Barange", Unit.getUniqueID());
|
||||
MCSymbol *EndLabel = Asm->GetTempSymbol("Earange", Unit.getUniqueID());
|
||||
MCSymbol *BeginLabel = Asm->createTempSymbol("Barange", Unit.getUniqueID());
|
||||
MCSymbol *EndLabel = Asm->createTempSymbol("Earange", Unit.getUniqueID());
|
||||
|
||||
unsigned HeaderSize =
|
||||
sizeof(int32_t) + // Size of contents (w/o this field
|
||||
|
|
Loading…
Reference in New Issue