This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: PATCH: MIPS 74K load/store scheduling tweak (take 2)


Sandra Loosemore <sandra@codesourcery.com> writes:
> + /* Implement TARGET_SCHED_INIT.  */
> + 
> + static void
> + mips_sched_init (FILE *file ATTRIBUTE_UNUSED, int verbose ATTRIBUTE_UNUSED,
> + 		 int max_ready ATTRIBUTE_UNUSED)
> + {
> +   if (!reload_completed && TUNE_MACC_CHAINS)
> +     mips_macc_chains_last_hilo = 0;
> +   if (reload_completed && TUNE_MIPS4130 && !TARGET_VR4130_ALIGN)
> +     vr4130_last_insn = 0;
> +   if (TUNE_74K)
> +     mips_74k_agen_init (NULL_RTX);
> + 
> + }

Excess blank line before "}".  Might as well do the initialisations
unconditinally; it's one less thing to keep in sync.

OK with that change, thanks.  No need to retest; if it compiles,
it's fine.

Richard


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]