diff options
Diffstat (limited to 'gcc/sibcall.c')
-rw-r--r-- | gcc/sibcall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sibcall.c b/gcc/sibcall.c index 120b6410db2..78e855eef78 100644 --- a/gcc/sibcall.c +++ b/gcc/sibcall.c @@ -301,7 +301,7 @@ sequence_uses_addressof (seq) rtx insn; for (insn = seq; insn; insn = NEXT_INSN (insn)) - if (GET_RTX_CLASS (GET_CODE (insn)) == 'i') + if (INSN_P (insn)) { /* If this is a CALL_PLACEHOLDER, then recursively call ourselves with each nonempty sequence attached to the CALL_PLACEHOLDER. */ |