diff options
author | Adam Nemet <anemet@caviumnetworks.com> | 2008-05-14 14:27:06 +0000 |
---|---|---|
committer | Adam Nemet <nemet@gcc.gnu.org> | 2008-05-14 14:27:06 +0000 |
commit | 1fd03c702134e610ffa87e5bb380606e14a6dc81 (patch) | |
tree | 643f4a0c234441a53025977dfaa4f3dcb2e3bc11 /gcc | |
parent | b0b14c7b87bc8456c809b7b6017c2918403350bf (diff) | |
download | gcc-1fd03c702134e610ffa87e5bb380606e14a6dc81.zip gcc-1fd03c702134e610ffa87e5bb380606e14a6dc81.tar.gz gcc-1fd03c702134e610ffa87e5bb380606e14a6dc81.tar.bz2 |
calls.c (emit_library_call_value_1): Restore code clearing ECF_LIBCALL_BLOCK to ensure that we only call...
* calls.c (emit_library_call_value_1): Restore code clearing
ECF_LIBCALL_BLOCK to ensure that we only call end_sequence
once.
From-SVN: r135295
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/calls.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1f8a441..9b6a5d2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2008-05-14 Adam Nemet <anemet@caviumnetworks.com> + + * calls.c (emit_library_call_value_1): Restore code clearing + ECF_LIBCALL_BLOCK to ensure that we only call end_sequence + once. + 2008-05-14 Olivier Hainque <hainque@adacore.com> Nicolas Roche <roche@adacore.com> diff --git a/gcc/calls.c b/gcc/calls.c index ac83982..4b54503 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -3495,6 +3495,7 @@ emit_library_call_value_1 (int retval, rtx orgfun, rtx value, end_sequence (); emit_insn (insns); } + flags &= ~ECF_LIBCALL_BLOCK; /* If this was a CONST function, it is now PURE since it now reads memory. */ |