reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Scalar/ConstantProp.cpp
   90       WorkList.erase(I); // Remove element from the worklist...
   92       if (!I->use_empty()) // Don't muck with dead instructions...
   93         if (Constant *C = ConstantFoldInstruction(I, DL, TLI)) {
   99           for (User *U : I->users()) {
  106           I->replaceAllUsesWith(C);
  108           if (isInstructionTriviallyDead(I, TLI)) {
  109             I->eraseFromParent();