forked from OSchip/llvm-project
parent
aef432505b
commit
5c2764b3e9
|
@ -97,10 +97,7 @@ static unsigned ApproximateLoopSize(const Loop *L) {
|
||||||
// is higher than other instructions. Here 3 and 10 are magic
|
// is higher than other instructions. Here 3 and 10 are magic
|
||||||
// numbers that help one isolated test case from PR2067 without
|
// numbers that help one isolated test case from PR2067 without
|
||||||
// negatively impacting measured benchmarks.
|
// negatively impacting measured benchmarks.
|
||||||
if (isa<IntrinsicInst>(I))
|
Size += isa<IntrinsicInst>(I) ? 3 : 10;
|
||||||
Size = Size + 3;
|
|
||||||
else
|
|
||||||
Size = Size + 10;
|
|
||||||
} else {
|
} else {
|
||||||
++Size;
|
++Size;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue