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/function.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/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/function.c b/gcc/function.c index 51beeef..553ab91 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -7189,7 +7189,9 @@ thread_prologue_and_epilogue_insns (f) { int inserted = 0; edge e; +#if defined (HAVE_sibcall_epilogue) || defined (HAVE_epilogue) || defined (HAVE_return) || defined (HAVE_prologue) rtx seq; +#endif #ifdef HAVE_prologue rtx prologue_end = NULL_RTX; #endif |