diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-05 08:24:30 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-05 08:24:30 -0500 |
commit | 2c65021a94a2a2020bd2c76d147a747c6f4e5928 (patch) | |
tree | db42efb7e13cb366eb92a90128b8dafc86a45a4b | |
parent | 7bac1be089a8a64dbbaeba20856e5441b5f1794d (diff) | |
download | gcc-2c65021a94a2a2020bd2c76d147a747c6f4e5928.zip gcc-2c65021a94a2a2020bd2c76d147a747c6f4e5928.tar.gz gcc-2c65021a94a2a2020bd2c76d147a747c6f4e5928.tar.bz2 |
(rest_of_compilation): Invoke MACHINE_DEPENDENT_REORG if defined.
From-SVN: r6485
-rw-r--r-- | gcc/toplev.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 1f4ae92..a8f6863 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. */ |