diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-06-05 20:32:41 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-06-05 20:32:41 +0000 |
commit | d558416ef32eb82c6cf3b8fa446709690567c777 (patch) | |
tree | ada42d35b4befac7e457d3454c5ec417007a605d /gcc/reload1.c | |
parent | b0317102a8643b027df3e93988c0b3d6146cbfc6 (diff) | |
download | gcc-d558416ef32eb82c6cf3b8fa446709690567c777.zip gcc-d558416ef32eb82c6cf3b8fa446709690567c777.tar.gz gcc-d558416ef32eb82c6cf3b8fa446709690567c777.tar.bz2 |
print-rtl.c (xspaces): Remove.
* print-rtl.c (xspaces): Remove.
(print_rtx): Use printf field-width, rather than xpsaces, to
indent.
* toplev.c (main): Disable sibling-call optimization if we are
handling exceptions.
* reload1.c (reload): Delete all USEs generated during reload.
From-SVN: r42917
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 5f08444..53c3116 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -1187,7 +1187,7 @@ reload (first, global) CALL_INSN_FUNCTION_USAGE (insn)); if ((GET_CODE (PATTERN (insn)) == USE - && find_reg_note (insn, REG_EQUAL, NULL_RTX)) + && INSN_UID (insn) >= reload_first_uid) || (GET_CODE (PATTERN (insn)) == CLOBBER && (GET_CODE (XEXP (PATTERN (insn), 0)) != REG || ! REG_FUNCTION_VALUE_P (XEXP (PATTERN (insn), 0))))) |