mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-02 21:31:41 +00:00
Remove premature optimization that avoided calculating argument weights
if we weren't going to inline the function. The rest of the code using this was removed. Fixes PR9154. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124991 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5d43ff4e7e
commit
bd75021465
@ -242,11 +242,6 @@ void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F) {
|
||||
if (Metrics.NumRets==1)
|
||||
--Metrics.NumInsts;
|
||||
|
||||
// Don't bother calculating argument weights if we are never going to inline
|
||||
// the function anyway.
|
||||
if (NeverInline())
|
||||
return;
|
||||
|
||||
// Check out all of the arguments to the function, figuring out how much
|
||||
// code can be eliminated if one of the arguments is a constant.
|
||||
ArgumentWeights.reserve(F->arg_size());
|
||||
|
Loading…
x
Reference in New Issue
Block a user