From: Richard Kenner Date: Sat, 5 Feb 1994 13:24:30 +0000 (-0500) Subject: (rest_of_compilation): Invoke MACHINE_DEPENDENT_REORG if defined. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c65021a94a2a2020bd2c76d147a747c6f4e5928;p=gcc.git (rest_of_compilation): Invoke MACHINE_DEPENDENT_REORG if defined. From-SVN: r6485 --- diff --git a/gcc/toplev.c b/gcc/toplev.c index 1f4ae92b904..a8f68631180 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -3082,6 +3082,11 @@ rest_of_compilation (decl) fflush (jump2_opt_dump_file); }); + /* If a machine dependent reorganization is needed, call it. */ +#ifdef MACHINE_DEPENDENT_REORG + MACHINE_DEPENDENT_REORG (insns); +#endif + /* If a scheduling pass for delayed branches is to be done, call the scheduling code. */