mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
Revert "Refactor SampleProfile.cpp to move computation inside a branch. (NFC)"
Causes MSan failures on the buildbot. llvm-svn: 292840
This commit is contained in:
parent
4f93c19c2e
commit
23916be8e1
@ -651,9 +651,9 @@ bool SampleProfileLoader::inlineHotFunctions(Function &F) {
|
||||
Function *CalledFunction = CS.getCalledFunction();
|
||||
if (!CalledFunction || !CalledFunction->getSubprogram())
|
||||
continue;
|
||||
DebugLoc DLoc = I->getDebugLoc();
|
||||
uint64_t NumSamples = findCalleeFunctionSamples(*I)->getTotalSamples();
|
||||
if (InlineFunction(CS, IFI)) {
|
||||
DebugLoc DLoc = I->getDebugLoc();
|
||||
uint64_t NumSamples = findCalleeFunctionSamples(*I)->getTotalSamples();
|
||||
LocalChanged = true;
|
||||
emitOptimizationRemark(Ctx, DEBUG_TYPE, F, DLoc,
|
||||
Twine("inlined hot callee '") +
|
||||
|
Loading…
Reference in New Issue
Block a user