diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-10-19 19:42:46 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-10-19 19:42:46 +0000 |
commit | 91ea4f8ddfb30a1274e951d43ac4d79eb5c63e9e (patch) | |
tree | 35d74451a570e71f324c150e308f21b0bbc64373 /gcc/rtlanal.c | |
parent | acf9cc0f52e816e6dc29095098cdef6d77ddb7de (diff) | |
download | gcc-91ea4f8ddfb30a1274e951d43ac4d79eb5c63e9e.zip gcc-91ea4f8ddfb30a1274e951d43ac4d79eb5c63e9e.tar.gz gcc-91ea4f8ddfb30a1274e951d43ac4d79eb5c63e9e.tar.bz2 |
Makefile.in (rtlanal.o): Depend on $(TM_P_H).
* Makefile.in (rtlanal.o): Depend on $(TM_P_H).
* arm-protos.h (rdata_section, zero_init_section, common_section):
Prototype.
* arm.h (ASM_OUTPUT_DEF_FROM_DECLS): Const-ify.
* avr.h (ASM_OUTPUT_SKIP): Rename macro parameter to avoid
traditional mode stringification.
* function.c (thread_prologue_and_epilogue_insns): Wrap variable
in macros controling its use.
* rtlanal.c: Include tm_p.h.
* varasm.c (asm_output_aligned_bss): Mark parameter with
ATTRIBUTE_UNUSED.
(assemble_constant_align, assemble_start_function, assemble_align,
assemble_variable, assemble_trampoline_template,
output_constant_def_contents): Wrap potentially empty if-stmt body
in brackets.
From-SVN: r46360
Diffstat (limited to 'gcc/rtlanal.c')
-rw-r--r-- | gcc/rtlanal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 9cf879c..4aa9030 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -25,6 +25,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "toplev.h" #include "rtl.h" #include "hard-reg-set.h" +#include "tm_p.h" /* Forward declarations */ static void set_of_1 PARAMS ((rtx, rtx, void *)); |