C++: Delete unused predicates.

This commit is contained in:
Mathias Vorreiter Pedersen
2024-11-14 16:46:19 +00:00
parent bb85aa2fc9
commit 6e7256f9d4

View File

@@ -118,11 +118,7 @@ private class ScrutineeValueNumber extends ValueNumber {
/** Gets an expression that belongs to this value number. */
Operand getExpressionOperand() { result = switch.getExpressionOperand() }
IRType getResultIRType() { result = switch.getExpression().getResultIRType() }
Instruction getSuccessor(CaseEdge kind) { result = switch.getSuccessor(kind) }
predicate isGLValue() { switch.getExpression().isGLValue() } // Is this ever true?
}
/**