diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-29 17:01:53 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-29 17:01:53 +0000 |
commit | 4d1f4307480c700e251e01b4931f8935db4a04cc (patch) | |
tree | ea95e3e09027651222c04624fd31922365dd2cc8 /gcc/recog.c | |
parent | 32713c6adc863840a8c30eac0a2959cfae72358f (diff) | |
download | gcc-4d1f4307480c700e251e01b4931f8935db4a04cc.tar.gz |
* basic-block.h (CLEANUP_PRE_LOOP): New.
* except.c (finish_eh_generation): Update call of cleanup_cfg.
* sibcall.c (optimize_sibling_calls): Likewise.
* toplev.c (rest_of_compilation): Likewise.
* flow.c (try_forward_edges): Take argument MODE;
do not forward over loop pre-headers if CLEANUP_PRE_LOOP.
(try_optimize_cfg): Update call of try_forward_edges.
* (validate_replace_rtx_1): Fix simplification of MINUS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44458 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/recog.c')
-rw-r--r-- | gcc/recog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/recog.c b/gcc/recog.c index c77bc4263bd..fc349ddaad2 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -521,8 +521,8 @@ validate_replace_rtx_1 (loc, from, to, object) simplify_gen_binary (PLUS, GET_MODE (x), XEXP (x, 0), simplify_gen_unary (NEG, - op0_mode, XEXP (x, 1), - op0_mode)), 1); + GET_MODE (x), XEXP (x, 1), + GET_MODE (x))), 1); break; case ZERO_EXTEND: case SIGN_EXTEND: |