@@ -610,8 +610,8 @@ static void EmitGenDwarfAranges(MCStreamer *MCOS,
610
610
// Now emit the table of pairs of PointerSize'ed values for the section
611
611
// addresses and sizes.
612
612
for (const auto &sec : Sections) {
613
- MCSymbol* StartSymbol = sec.second .first ;
614
- MCSymbol* EndSymbol = sec.second .second ;
613
+ MCSymbol * StartSymbol = sec.second .first ;
614
+ MCSymbol * EndSymbol = sec.second .second ;
615
615
assert (StartSymbol && " StartSymbol must not be NULL" );
616
616
assert (EndSymbol && " EndSymbol must not be NULL" );
617
617
@@ -697,8 +697,8 @@ static void EmitGenDwarfInfo(MCStreamer *MCOS,
697
697
const auto TextSection = Sections.begin ();
698
698
assert (TextSection != Sections.end () && " No text section found" );
699
699
700
- MCSymbol* StartSymbol = TextSection->second .first ;
701
- MCSymbol* EndSymbol = TextSection->second .second ;
700
+ MCSymbol * StartSymbol = TextSection->second .first ;
701
+ MCSymbol * EndSymbol = TextSection->second .second ;
702
702
assert (StartSymbol && " StartSymbol must not be NULL" );
703
703
assert (EndSymbol && " EndSymbol must not be NULL" );
704
704
@@ -809,8 +809,8 @@ static void EmitGenDwarfRanges(MCStreamer *MCOS) {
809
809
810
810
for (const auto sec : Sections) {
811
811
812
- MCSymbol* StartSymbol = sec.second .first ;
813
- MCSymbol* EndSymbol = sec.second .second ;
812
+ MCSymbol * StartSymbol = sec.second .first ;
813
+ MCSymbol * EndSymbol = sec.second .second ;
814
814
assert (StartSymbol && " StartSymbol must not be NULL" );
815
815
assert (EndSymbol && " EndSymbol must not be NULL" );
816
816
@@ -1539,13 +1539,12 @@ namespace {
1539
1539
return CIEKey (nullptr , -1 , 0 , false , false );
1540
1540
}
1541
1541
1542
- CIEKey (const MCSymbol* Personality_, unsigned PersonalityEncoding_,
1543
- unsigned LsdaEncoding_, bool IsSignalFrame_, bool IsSimple_) :
1544
- Personality (Personality_), PersonalityEncoding(PersonalityEncoding_),
1545
- LsdaEncoding (LsdaEncoding_), IsSignalFrame(IsSignalFrame_),
1546
- IsSimple (IsSimple_) {
1547
- }
1548
- const MCSymbol* Personality;
1542
+ CIEKey (const MCSymbol *Personality_, unsigned PersonalityEncoding_,
1543
+ unsigned LsdaEncoding_, bool IsSignalFrame_, bool IsSimple_)
1544
+ : Personality(Personality_), PersonalityEncoding(PersonalityEncoding_),
1545
+ LsdaEncoding (LsdaEncoding_), IsSignalFrame(IsSignalFrame_),
1546
+ IsSimple(IsSimple_) {}
1547
+ const MCSymbol *Personality;
1549
1548
unsigned PersonalityEncoding;
1550
1549
unsigned LsdaEncoding;
1551
1550
bool IsSignalFrame;
@@ -1620,7 +1619,7 @@ void MCDwarfFrameEmitter::Emit(MCObjectStreamer &Streamer, MCAsmBackend *MAB,
1620
1619
Emitter.setSectionStart (SectionStart);
1621
1620
1622
1621
MCSymbol *FDEEnd = nullptr ;
1623
- DenseMap<CIEKey, const MCSymbol*> CIEStarts;
1622
+ DenseMap<CIEKey, const MCSymbol *> CIEStarts;
1624
1623
1625
1624
const MCSymbol *DummyDebugKey = nullptr ;
1626
1625
NeedsEHFrameSection = !MOFI->getSupportsCompactUnwindWithoutEHFrame ();
0 commit comments