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

References

lib/Transforms/InstCombine/InstCombineCalls.cpp
 3865         if (SS->getNextNonDebugInstruction() == II) {
 3926     Instruction *Next = II->getNextNonDebugInstruction();
 4070   Instruction *Next = FI.getNextNonDebugInstruction();
lib/Transforms/Utils/Local.cpp
 1745     bool DomPointAfterFrom = From.getNextNonDebugInstruction() == &DomPoint;
 1750       if (DomPointAfterFrom && DII->getNextNonDebugInstruction() == &DomPoint) {
unittests/IR/InstructionsTest.cpp
 1030   EXPECT_EQ(Term, BB.begin()->getNextNonDebugInstruction());
 1034   EXPECT_EQ(nullptr, Term->getNextNonDebugInstruction());
unittests/Transforms/Utils/LocalTest.cpp
  714   Instruction &B = *A.getNextNonDebugInstruction();
  715   Instruction &C = *B.getNextNonDebugInstruction();
  716   Instruction &D = *C.getNextNonDebugInstruction();
  717   Instruction &E = *D.getNextNonDebugInstruction();
  718   Instruction &F_ = *E.getNextNonDebugInstruction();
  719   Instruction &Barrier = *F_.getNextNonDebugInstruction();
  720   Instruction &G = *Barrier.getNextNonDebugInstruction();