diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-16 18:53:51 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-16 18:53:51 +0000 |
commit | 89df180d779158d38115beeba23f9efd48636ba3 (patch) | |
tree | 1d4f7d52236263c5808407e61f046c99351cdf1d /gcc/haifa-sched.c | |
parent | 9dfc7b1d1621aaed332c82cf6f5c733e224de30b (diff) | |
download | gcc-89df180d779158d38115beeba23f9efd48636ba3.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75988 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/haifa-sched.c')
-rw-r--r-- | gcc/haifa-sched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index 5e11b39d507..d55c1c77732 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -732,7 +732,7 @@ actual_hazard_this_instance (int unit, int instance, rtx insn, int clock, int co at time CLOCK. The scheduler using only DFA description should never use the following function. */ -HAIFA_INLINE static void +static void schedule_unit (int unit, rtx insn, int clock) { int i; @@ -764,7 +764,7 @@ schedule_unit (int unit, rtx insn, int clock) was COST. The scheduler using only DFA description should never use the following function. */ -HAIFA_INLINE static int +static int actual_hazard (int unit, rtx insn, int clock, int cost) { int i; |