diff options
author | Jan Hubicka <jh@suse.cz> | 2004-01-16 19:53:51 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2004-01-16 18:53:51 +0000 |
commit | 965514bd92689acdf4d64d47c9905099a1c7b829 (patch) | |
tree | 1d4f7d52236263c5808407e61f046c99351cdf1d /gcc/ra.h | |
parent | 71bbcf4d56ce5fb369d879702932b88447053be9 (diff) | |
download | gcc-965514bd92689acdf4d64d47c9905099a1c7b829.zip gcc-965514bd92689acdf4d64d47c9905099a1c7b829.tar.gz gcc-965514bd92689acdf4d64d47c9905099a1c7b829.tar.bz2 |
re PR target/13608 (Incorrect code with -O3 -ffast-math)
* i386.md (load_tp_di): Fix pasto.
PR opt/13608
* i386.c (ix86_compute_frame_layout): Fix for alloca on leaf function.
* c-pretty-print.c (pp_c_type_cast, pp_c_abstract_declarator,
pp_c_character_constant, pp_c_floating_constant,
pp_c_additive_expression, pp_c_shift_expression,
pp_c_equality_expression, pp_c_and_expression,
pp_c_exclusive_or_expression, pp_c_inclusive_or_expression,
pp_c_logical_and_expression): Remove inline modifier.
* dwarf2out.c (get_AT): Likewise.
* et-forest.c (et_splay): Likewise.
* ra.h (ra_alloc, ra_calloc): Likewise
* mangle.c (write_mangled_name): Remove inline modifier.
From-SVN: r75988
Diffstat (limited to 'gcc/ra.h')
-rw-r--r-- | gcc/ra.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -569,8 +569,8 @@ extern int flag_ra_spill_every_use; /* Nonzero to output all notes in the debug dumps. */ extern int flag_ra_dump_notes; -extern inline void * ra_alloc (size_t); -extern inline void * ra_calloc (size_t); +extern void * ra_alloc (size_t); +extern void * ra_calloc (size_t); extern int hard_regs_count (HARD_REG_SET); extern rtx ra_emit_move_insn (rtx, rtx); extern void ra_debug_msg (unsigned int, const char *, ...) ATTRIBUTE_PRINTF_2; |