diff options
author | Jan Hubicka <jh@suse.cz> | 2001-05-17 20:46:58 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-05-17 18:46:58 +0000 |
commit | 949c5d62571446e982b85c6190af0a172d645356 (patch) | |
tree | 56b80c09408fe368396536eefa4327bd32d5c2f5 /gcc/rtl.h | |
parent | e221a0a8fb1f015f9d322ff139ad43c0dc3b0611 (diff) | |
download | gcc-949c5d62571446e982b85c6190af0a172d645356.tar.gz |
cse.c (fold_rtx): Use simplify_subreg.
* cse.c (fold_rtx): Use simplify_subreg.
* simplify-rtx.c (simplify_replace_rtx): Use simplify_gen_subreg.
(simplify_gen_subreg): New.
(simplify_rtx): Use simplify_subreg.
* rtl.h (simplify_gen_subreg): Declare.
From-SVN: r42221
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 6aa86136b6f..7ba5440ef74 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1331,6 +1331,10 @@ extern rtx simplify_subreg PARAMS ((enum machine_mode, rtx, enum machine_mode, unsigned int)); +extern rtx simplify_gen_subreg PARAMS ((enum machine_mode, + rtx, + enum machine_mode, + unsigned int)); extern rtx simplify_replace_rtx PARAMS ((rtx, rtx, rtx)); extern rtx simplify_rtx PARAMS ((rtx)); |