File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
llvm/lib/CodeGen/AsmPrinter Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -252,10 +252,10 @@ void EHStreamer::computeCallSiteTable(
252
252
if (&MBB == &Asm->MF ->front () || MBB.isBeginSection ()) {
253
253
// We start a call-site range upon function entry and at the beginning of
254
254
// every basic block section.
255
- CallSiteRanges. push_back (
256
- {Asm-> MBBSectionRanges [MBB. getSectionID ()] .BeginLabel ,
257
- Asm->MBBSectionRanges [MBB. getSectionID ()]. EndLabel ,
258
- Asm-> getMBBExceptionSym (MBB), CallSites.size ()});
255
+ auto &Range = Asm-> MBBSectionRanges [MBB. getSectionID ()];
256
+ CallSiteRanges. push_back ({Range .BeginLabel , Range. EndLabel ,
257
+ Asm->getMBBExceptionSym (MBB) ,
258
+ CallSites.size ()});
259
259
PreviousIsInvoke = false ;
260
260
SawPotentiallyThrowing = false ;
261
261
LastLabel = nullptr ;
You can’t perform that action at this time.
0 commit comments