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/rtl.h | |
parent | bb84cb12fb14b902e94788f37fa967eef29584df (diff) | |
download | gcc-2adb9af1f88f1454435e8469cbc3c523ab5db42f.zip gcc-2adb9af1f88f1454435e8469cbc3c523ab5db42f.tar.gz gcc-2adb9af1f88f1454435e8469cbc3c523ab5db42f.tar.bz2 |
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/rtl.h')
-rw-r--r-- | gcc/rtl.h | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1230,15 +1230,16 @@ do { \ #define COND_EXEC_TEST(RTX) XCEXP (RTX, 0, COND_EXEC) #define COND_EXEC_CODE(RTX) XCEXP (RTX, 1, COND_EXEC) -/* 1 if RTX is a symbol_ref that addresses this function's constants pool. */ +/* 1 if RTX is a symbol_ref that addresses this function's rtl + constants pool. */ #define CONSTANT_POOL_ADDRESS_P(RTX) \ (RTL_FLAG_CHECK1("CONSTANT_POOL_ADDRESS_P", (RTX), SYMBOL_REF)->unchanging) -/* 1 if RTX is a symbol_ref that addresses a value in the file's constant - pool which has not yet been output. This information is private to - varasm.c. */ -#define DEFERRED_CONSTANT_P(RTX) \ - (RTL_FLAG_CHECK1("DEFERRED_CONSTANT_P", (RTX), SYMBOL_REF)->frame_related) +/* 1 if RTX is a symbol_ref that addresses a value in the file's + tree constant pool. This information is private to varasm.c. */ +#define TREE_CONSTANT_POOL_ADDRESS_P(RTX) \ + (RTL_FLAG_CHECK1("TREE_CONSTANT_POOL_ADDRESS_P", \ + (RTX), SYMBOL_REF)->frame_related) /* Used if RTX is a symbol_ref, for machine-specific purposes. */ #define SYMBOL_REF_FLAG(RTX) \ |