From ca4f3d13192837e3c285b1b3179a09e6fbb49500 Mon Sep 17 00:00:00 2001 From: Steven Bosscher Date: Tue, 6 Jul 2004 21:21:31 +0000 Subject: alpha.c (alpha_use_dfa_pipeline_interface): Remove. * config/alpha/alpha.c (alpha_use_dfa_pipeline_interface): Remove. (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1. * config/arm/arm.c (arm_use_dfa_pipeline_interface): Remove. (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1. * config/frv/frv.c (frv_use_dfa_pipeline_interface): Remove. (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1. * config/i386/i386.c (ia32_use_dfa_pipeline_interface): Remove. (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1. * config/ia64/ia64.c (ia64_use_dfa_pipeline_interface): Remove. (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1. * config/pa/pa.c (hhpa_use_dfa_pipeline_interface): Remove. (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1. * config/sparc/sparc.c (sparc_use_dfa_pipeline_interface): Remove. (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1. * config/v850/v850.c (v850_use_dfa_pipeline_interface): Remove. (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1. From-SVN: r84170 --- gcc/config/sparc/sparc.c | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) (limited to 'gcc/config/sparc') diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index 64a207d..5439f03 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -161,7 +161,6 @@ static void sparc_elf_asm_named_section (const char *, unsigned int); static int sparc_adjust_cost (rtx, rtx, rtx, int); static int sparc_issue_rate (void); static void sparc_sched_init (FILE *, int, int); -static int sparc_use_dfa_pipeline_interface (void); static int sparc_use_sched_lookahead (void); static void emit_soft_tfmode_libcall (const char *, int, rtx *); @@ -242,7 +241,7 @@ enum processor_type sparc_cpu; #undef TARGET_SCHED_INIT #define TARGET_SCHED_INIT sparc_sched_init #undef TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE -#define TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE sparc_use_dfa_pipeline_interface +#define TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE hook_int_void_1 #undef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD #define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD sparc_use_sched_lookahead @@ -7449,18 +7448,6 @@ sparc_sched_init (FILE *dump ATTRIBUTE_UNUSED, } static int -sparc_use_dfa_pipeline_interface (void) -{ - if ((1 << sparc_cpu) & - ((1 << PROCESSOR_ULTRASPARC) | (1 << PROCESSOR_CYPRESS) | - (1 << PROCESSOR_SUPERSPARC) | (1 << PROCESSOR_HYPERSPARC) | - (1 << PROCESSOR_SPARCLITE86X) | (1 << PROCESSOR_TSC701) | - (1 << PROCESSOR_ULTRASPARC3))) - return 1; - return 0; -} - -static int sparc_use_sched_lookahead (void) { if (sparc_cpu == PROCESSOR_ULTRASPARC -- cgit v1.1