diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-31 23:13:23 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-31 23:13:23 +0000 |
| commit | 82032a87f1eaa50659fe96fd5d7bdb3c9b22dcdd (patch) | |
| tree | 5deda97421f00708cf9d3b12a2cc5501fe610bd3 | |
| parent | 7e5202bcdce0dfeb2599e6be3f4509b0c3d6978a (diff) | |
| download | ppe42-gcc-82032a87f1eaa50659fe96fd5d7bdb3c9b22dcdd.tar.gz ppe42-gcc-82032a87f1eaa50659fe96fd5d7bdb3c9b22dcdd.zip | |
* varasm.c (output_constant_pool): Don't zap the pool.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77056 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 710a1840e6d..3f395838b00 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 f9acb3895ab..8bad0fffb00 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. */ |

