diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1996-12-13 18:15:16 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1996-12-13 18:15:16 +0000 |
commit | 5c8c0abd1ffe7eccbdfa464803e4360d37563c7e (patch) | |
tree | c68cf584a9e50671f18691c9f8169477d92c39da /gcc | |
parent | 469ac9939bb1bec320f7b3814de1f62423ea219a (diff) | |
download | gcc-5c8c0abd1ffe7eccbdfa464803e4360d37563c7e.zip gcc-5c8c0abd1ffe7eccbdfa464803e4360d37563c7e.tar.gz gcc-5c8c0abd1ffe7eccbdfa464803e4360d37563c7e.tar.bz2 |
Call ASM_OUTPUT_POOL_EPILOGUE after outputting the constant pool
From-SVN: r13306
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/varasm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index a862647..21ccb1d 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -3567,6 +3567,10 @@ output_constant_pool (fnname, fndecl) done: ; } +#ifdef ASM_OUTPUT_POOL_EPILOGUE + ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool_offset); +#endif + /* Done with this pool. */ first_pool = last_pool = 0; } |