Searched refs:NGEP (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1379 Value *NGEP = cast<GEPOperator>(GEP)->isInBounds() ? local
1382 NGEP->takeName(GEP);
1385 return new BitCastInst(NGEP, CI.getType());
1387 return new PtrToIntInst(NGEP, CI.getType());
H A DInstructionCombining.cpp1360 Value *NGEP = GEP.isInBounds() ? local
1364 if (NGEP->getType() == GEP.getType())
1365 return ReplaceInstUsesWith(GEP, NGEP);
1366 NGEP->takeName(&GEP);
1367 return new BitCastInst(NGEP, GEP.getType());

Completed in 105 milliseconds