diff options
author | Steven Bosscher <stevenb@suse.de> | 2004-07-06 21:21:31 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2004-07-06 21:21:31 +0000 |
commit | ca4f3d13192837e3c285b1b3179a09e6fbb49500 (patch) | |
tree | cc8cac667a9680f991e47891ee5d6b6cfe44b58e /gcc/config/sparc | |
parent | 9845387984d854487bd46b70cb0f155edbd23316 (diff) | |
download | gcc-ca4f3d13192837e3c285b1b3179a09e6fbb49500.zip gcc-ca4f3d13192837e3c285b1b3179a09e6fbb49500.tar.gz gcc-ca4f3d13192837e3c285b1b3179a09e6fbb49500.tar.bz2 |
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
Diffstat (limited to 'gcc/config/sparc')
-rw-r--r-- | gcc/config/sparc/sparc.c | 15 |
1 files changed, 1 insertions, 14 deletions
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 |