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

References

lib/TableGen/Record.cpp
  951     if (L && R) {
  954       case EQ: Result = L->getValue() == R->getValue(); break;
  955       case NE: Result = L->getValue() != R->getValue(); break;
  956       case LE: Result = L->getValue() <= R->getValue(); break;
  957       case LT: Result = L->getValue() < R->getValue(); break;
  958       case GE: Result = L->getValue() >= R->getValue(); break;
  959       case GT: Result = L->getValue() > R->getValue(); break;