diff options
author | Richard Henderson <rth@redhat.com> | 2004-01-31 15:13:23 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-01-31 15:13:23 -0800 |
commit | fadeed3b069258037b0c38c3caec7004e2546267 (patch) | |
tree | 5deda97421f00708cf9d3b12a2cc5501fe610bd3 /gcc | |
parent | ccdc170325f15c929a3b44688c1f223047e3e4e5 (diff) | |
download | gcc-fadeed3b069258037b0c38c3caec7004e2546267.zip gcc-fadeed3b069258037b0c38c3caec7004e2546267.tar.gz gcc-fadeed3b069258037b0c38c3caec7004e2546267.tar.bz2 |
* varasm.c (output_constant_pool): Don't zap the pool.
From-SVN: r77056
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/varasm.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 710a184..3f39583 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-01-31 Richard Henderson <rth@redhat.com> + + * varasm.c (output_constant_pool): Don't zap the pool. + 2004-01-31 Kazu Hirata <kazu@cs.umass.edu> * genrecog.c (decision_type): Add DT_const_int. diff --git a/gcc/varasm.c b/gcc/varasm.c index f9acb38..8bad0ff 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -3124,9 +3124,6 @@ output_constant_pool (const char *fnname ATTRIBUTE_UNUSED, #ifdef ASM_OUTPUT_POOL_EPILOGUE ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset); #endif - - /* Done with this pool. */ - cfun->varasm->pool = NULL; } /* Determine what kind of relocations EXP may need. */ |