aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2003-05-14 10:44:01 -0700
committerRichard Henderson <rth@gcc.gnu.org>2003-05-14 10:44:01 -0700
commit2adb9af1f88f1454435e8469cbc3c523ab5db42f (patch)
treecfb46ce49ae7e84da0f5bc6e3bd2c4d3571b6089 /gcc/rtl.h
parentbb84cb12fb14b902e94788f37fa967eef29584df (diff)
downloadgcc-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.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 431b0dd..77b1f38 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -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) \