From 2c65021a94a2a2020bd2c76d147a747c6f4e5928 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 5 Feb 1994 08:24:30 -0500 Subject: [PATCH] (rest_of_compilation): Invoke MACHINE_DEPENDENT_REORG if defined. From-SVN: r6485 --- gcc/toplev.c | 5 +++++ 1 file changed, 5 insertions(+) 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. */ -- 2.30.2