Constify method. NFC

llvm-svn: 237167
This commit is contained in:
Pete Cooper 2015-05-12 20:05:20 +00:00
parent c7dc6d6ee7
commit 47e80cd796
1 changed files with 1 additions and 1 deletions

View File

@ -490,7 +490,7 @@ bool canSinkOrHoistInst(Instruction &I, AliasAnalysis *AA, DominatorTree *DT,
/// This is true when all incoming values are that instruction.
/// This pattern occurs most often with LCSSA PHI nodes.
///
static bool isTriviallyReplacablePHI(PHINode &PN, Instruction &I) {
static bool isTriviallyReplacablePHI(const PHINode &PN, const Instruction &I) {
for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
if (PN.getIncomingValue(i) != &I)
return false;