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

References

lib/Target/X86/X86CondBrFolding.cpp
  156     assert(CC == X86::COND_L || CC == X86::COND_G || CC == X86::COND_E);
  156     assert(CC == X86::COND_L || CC == X86::COND_G || CC == X86::COND_E);
  156     assert(CC == X86::COND_L || CC == X86::COND_G || CC == X86::COND_E);
  158     bool ValueCmpTrue = ((CmpValue < PredCmpValue && CC == X86::COND_L) ||
  159                          (CmpValue > PredCmpValue && CC == X86::COND_G) ||
  160                          (CmpValue == PredCmpValue && CC == X86::COND_E));
  170         (CmpValue == PredCmpValue - 1 && CC == X86::COND_L) ||
  171         (CmpValue == PredCmpValue + 1 && CC == X86::COND_G))