diff options
author | Geoff Keating <geoffk@cygnus.com> | 2000-09-01 01:03:29 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2000-09-01 01:03:29 +0000 |
commit | 1b3d8f8a350ba123682377bc22e54750bc670f51 (patch) | |
tree | 72e5e800965de1a0aefec76ff7020c0d0810bdc1 /gcc/rtl.c | |
parent | b7fc330e447b35d8b6192ab0569e90d736f79406 (diff) | |
download | gcc-1b3d8f8a350ba123682377bc22e54750bc670f51.zip gcc-1b3d8f8a350ba123682377bc22e54750bc670f51.tar.gz gcc-1b3d8f8a350ba123682377bc22e54750bc670f51.tar.bz2 |
stmt.c (expand_asm_operands): Twiddle generating_concat_p so that CONCATs are not generated for ASMs.
* stmt.c (expand_asm_operands): Twiddle generating_concat_p
so that CONCATs are not generated for ASMs.
* emit-rtl.c (gen_reg_rtx): Don't generate CONCATs when
not generating_concat_p.
* function.c (pop_function_context_from): Reset
generating_concat_p.
(prepare_function_start): Likewise.
* rtl.c (generating_concat_p): Define.
* rtl.h (generating_concat_p): Declare.
* toplev.c (rest_of_compilation): No CONCATs after RTL generation.
From-SVN: r36088
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -578,6 +578,9 @@ shallow_copy_rtx (orig) /* This is 1 until after the rtl generation pass. */ int rtx_equal_function_value_matters; + +/* Nonzero when we are generating CONCATs. */ +int generating_concat_p; /* Return 1 if X and Y are identical-looking rtx's. This is the Lisp function EQUAL for rtx arguments. */ |