diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-03 01:58:35 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-03 01:58:35 +0000 |
commit | b244d4c79af821f051d19ce62d7cd39b33eb9e70 (patch) | |
tree | 20f4c1fadc86f3b89ef524490fc2bd176650f76c /gcc/rtl.h | |
parent | 70c2c81c4794f0a090635a99d1c69a0be654f3f8 (diff) | |
download | gcc-b244d4c79af821f051d19ce62d7cd39b33eb9e70.tar.gz |
* explow.c (plus_constant_wide, case LO_SUM): New case.
(plus_constant_for_output_wide): Delete.
* rtl.h (plus_constant_for_output): Delete.
* alias.c (canon_rtx, init_alias_analysis): Call plus_constant
instead of plus_constant_for_output.
* recog.c (offsettable_address_p, adj_offsettable_operand): Likewise.
* config/darwin.c, config/arm/arm.c, config/m68k/m68k.c: Likewise.
* config/m88k/m88k.c, config/mips/mips.c, config/pa/pa.c: Likewise.
* config/rs6000/rs6000.c, config/sparc/sparc.c: Likewise.
* config/sparc/sparc.md: Likewise.
Convert some change_address calls to adjust_address.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43720 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 84de8fe3d39..efbaec23335 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1144,9 +1144,6 @@ extern int ceil_log2 PARAMS ((unsigned HOST_WIDE_INT)); #define plus_constant(X,C) plus_constant_wide (X, (HOST_WIDE_INT) (C)) -#define plus_constant_for_output(X,C) \ - plus_constant_for_output_wide (X, (HOST_WIDE_INT) (C)) - /* In builtins.c */ extern rtx expand_builtin_expect_jump PARAMS ((union tree_node *, rtx, rtx)); |