Merge pull request #2517 from glebm/fix-ubsan-localintermediate
callGraph.push_front -> emplace_front to fix UBSAN
This commit is contained in:
commit
5c4f421121
@ -2870,7 +2870,7 @@ void TIntermediate::addToCallGraph(TInfoSink& /*infoSink*/, const TString& calle
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
callGraph.push_front(TCall(caller, callee));
|
callGraph.emplace_front(caller, callee);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user