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

References

lib/CodeGen/MachineVerifier.cpp
 2226     for (unsigned I = 1, E = Phi.getNumOperands(); I != E; I += 2) {
 2226     for (unsigned I = 1, E = Phi.getNumOperands(); I != E; I += 2) {
 2227       const MachineOperand &MO0 = Phi.getOperand(I);
 2229         report("Expected PHI operand to be a register", &MO0, I);
 2234         report("Unexpected flag on PHI operand", &MO0, I);
 2236       const MachineOperand &MO1 = Phi.getOperand(I + 1);
 2238         report("Expected PHI operand to be a basic block", &MO1, I + 1);
 2244         report("PHI input is not a predecessor block", &MO1, I + 1);
 2253           report("PHI operand is not live-out from predecessor", &MO0, I);