diff options
author | YamaArashi <shadow962@live.com> | 2016-02-14 18:53:42 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-14 18:53:42 -0800 |
commit | abcd805cb77cfcfe0b5f911b784610983750a0b2 (patch) | |
tree | 23f256c89b81755f41df512d9410a3e70cc53a10 /gcc/final.c | |
parent | 7aeb8da2138f7521a78d377343b3a266e1e6f9d6 (diff) |
remove epilogue delay list
Diffstat (limited to 'gcc/final.c')
-rwxr-xr-x | gcc/final.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/final.c b/gcc/final.c index 624a231..0cb1444 100755 --- a/gcc/final.c +++ b/gcc/final.c @@ -2976,15 +2976,6 @@ leaf_function_p () && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN) return 0; } - for (insn = current_function_epilogue_delay_list; insn; insn = XEXP (insn, 1)) - { - if (GET_CODE (XEXP (insn, 0)) == CALL_INSN) - return 0; - if (GET_CODE (XEXP (insn, 0)) == INSN - && GET_CODE (PATTERN (XEXP (insn, 0))) == SEQUENCE - && GET_CODE (XVECEXP (PATTERN (XEXP (insn, 0)), 0, 0)) == CALL_INSN) - return 0; - } return 1; } |