mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-09 03:56:28 +00:00
Remove another unused variable from r275216
Remove another variable added in r275216 that was only used in debug mode. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275238 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
babacbf768
commit
f0bd87ec4e
@ -81,9 +81,8 @@ uint32_t ICallPromotionAnalysis::getProfitablePromotionCandidates(
|
||||
for (; I < MaxNumPromotions && I < NumVals; I++) {
|
||||
uint64_t Count = ValueDataRef[I].Count;
|
||||
assert(Count <= TotalCount);
|
||||
uint64_t Target = ValueDataRef[I].Value;
|
||||
DEBUG(dbgs() << " Candidate " << I << " Count=" << Count
|
||||
<< " Target_func: " << Target << "\n");
|
||||
<< " Target_func: " << ValueDataRef[I].Value << "\n");
|
||||
|
||||
if (!isPromotionProfitable(Count, TotalCount)) {
|
||||
DEBUG(dbgs() << " Not promote: Cold target.\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user