summaryrefslogtreecommitdiff
path: root/gcc/integrate.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2003-05-14 17:44:01 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2003-05-14 17:44:01 +0000
commit658782a5da1ca20a66861f31b68600b76ee59cd7 (patch)
treecfb46ce49ae7e84da0f5bc6e3bd2c4d3571b6089 /gcc/integrate.c
parent074b55a01ab52ea1b7d64192b5fee08c9d1f409e (diff)
downloadgcc-658782a5da1ca20a66861f31b68600b76ee59cd7.tar.gz
* rtl.h (TREE_CONSTANT_POOL_ADDRESS_P): Rename from
DEFERRED_CONSTANT_P. * integrate.c (copy_rtx_and_substitute): Update use. * varasm.c (build_constant_desc): Set SYMBOL_REF_DECL to the copy generated. (maybe_output_constant_def_contents): Examine TREE_ASM_WRITTEN of the constant to see if we should emit. (mark_constant): Similarly. (output_constant_def_contents): Set TREE_ASM_WRITTEN. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66807 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r--gcc/integrate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c
index c150dcbd709..4f31c79fa2d 100644
--- a/gcc/integrate.c
+++ b/gcc/integrate.c
@@ -2215,7 +2215,7 @@ copy_rtx_and_substitute (orig, map, for_lhs)
copy_rtx_and_substitute (constant, map, for_lhs)),
0);
}
- else if (DEFERRED_CONSTANT_P (orig) && inlining)
+ else if (TREE_CONSTANT_POOL_ADDRESS_P (orig) && inlining)
notice_rtl_inlining_of_deferred_constant ();
return orig;