mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-06 20:10:26 +00:00
Switch two simple uses of GetTempSymbol to createTempSymbol.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232484 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cebed4aaf1
commit
2e59282624
@ -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
Block a user