diff options
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c index 426ded3a52e..08f08db588b 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -5756,7 +5756,7 @@ do_jump_if_equal (op1, op2, label, unsignedp) { if (GET_CODE (op1) == CONST_INT && GET_CODE (op2) == CONST_INT) { - if (INTVAL (op1) == INTVAL (op2)) + if (op1 == op2) emit_jump (label); } else |