mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 15:19:33 +00:00
Fix -Asserts warnings.
llvm-svn: 79849
This commit is contained in:
parent
d76413b416
commit
40ba5f6f58
lib
@ -85,7 +85,9 @@
|
||||
#define FULL_UNIVERSAL 0
|
||||
|
||||
using namespace llvm;
|
||||
#ifndef NDEBUG
|
||||
STATISTIC(NumIters , "Number of iterations to reach convergence");
|
||||
#endif
|
||||
STATISTIC(NumConstraints, "Number of constraints");
|
||||
STATISTIC(NumNodes , "Number of nodes");
|
||||
STATISTIC(NumUnified , "Number of variables unified");
|
||||
|
@ -614,6 +614,7 @@ static bool SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI,
|
||||
assert(ThisCases.size() == 1 && "Branch can only have one case!");
|
||||
// Insert the new branch.
|
||||
Instruction *NI = BranchInst::Create(ThisDef, TI);
|
||||
(void) NI;
|
||||
|
||||
// Remove PHI node entries for the dead edge.
|
||||
ThisCases[0].second->removePredecessor(TI->getParent());
|
||||
@ -681,6 +682,7 @@ static bool SimplifyEqualityComparisonWithOnlyPredecessor(TerminatorInst *TI,
|
||||
|
||||
// Insert the new branch.
|
||||
Instruction *NI = BranchInst::Create(TheRealDest, TI);
|
||||
(void) NI;
|
||||
|
||||
DEBUG(errs() << "Threading pred instr: " << *Pred->getTerminator()
|
||||
<< "Through successor TI: " << *TI << "Leaving: " << *NI << "\n");
|
||||
@ -1450,6 +1452,7 @@ static bool SimplifyCondBranchToTwoReturns(BranchInst *BI) {
|
||||
Value *RI = !TrueValue ?
|
||||
ReturnInst::Create(BI->getContext(), BI) :
|
||||
ReturnInst::Create(BI->getContext(), TrueValue, BI);
|
||||
(void) RI;
|
||||
|
||||
DEBUG(errs() << "\nCHANGING BRANCH TO TWO RETURNS INTO SELECT:"
|
||||
<< "\n " << *BI << "NewRet = " << *RI
|
||||
|
Loading…
Reference in New Issue
Block a user