diff options
author | Richard Henderson <rth@redhat.com> | 2003-05-14 10:44:01 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2003-05-14 10:44:01 -0700 |
commit | 2adb9af1f88f1454435e8469cbc3c523ab5db42f (patch) | |
tree | cfb46ce49ae7e84da0f5bc6e3bd2c4d3571b6089 /gcc/integrate.c | |
parent | bb84cb12fb14b902e94788f37fa967eef29584df (diff) | |
download | gcc-2adb9af1f88f1454435e8469cbc3c523ab5db42f.tar.gz |
rtl.h (TREE_CONSTANT_POOL_ADDRESS_P): Rename from DEFERRED_CONSTANT_P.
* 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.
From-SVN: r66807
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 2 |
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; |