aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2003-04-17 01:49:53 -0700
committerRichard Henderson <rth@gcc.gnu.org>2003-04-17 01:49:53 -0700
commit89e6b70242b405c0df144abbe4a822fc376840fa (patch)
treeecd9689a21085bbcee6181d066498ccd73d3bceb /gcc/rtl.h
parentec94fc00037519b0c7ac971396de8366216e3c36 (diff)
downloadgcc-89e6b70242b405c0df144abbe4a822fc376840fa.zip
gcc-89e6b70242b405c0df144abbe4a822fc376840fa.tar.gz
gcc-89e6b70242b405c0df144abbe4a822fc376840fa.tar.bz2
rtl.h (SYMBOL_FLAG_MACH_DEP_SHIFT): New.
* rtl.h (SYMBOL_FLAG_MACH_DEP_SHIFT): New. * config/m32r/m32r.c (SYMBOL_FLAG_MODEL_SHIFT): New. (SYMBOL_REF_MODEL): New. (LIT_NAME_P): Move from m32r.h. (m32r_select_section): Remove. (m32r_encode_section_info): Use SYMBOL_REF_FLAGS. (m32r_strip_name_encoding): Remove. (m32r_in_small_data_p): New. (small_data_operand): Use SYMBOL_REF_SMALL_P. (addr24_operand): Use SYMBOL_REF_MODEL. (call26_operand): Likewise. (addr32_operand): Tidy. (m32r_print_operand): Use HOST_WIDE_INT_PRINT_HEX. * config/m32r/m32r.h (RODATA_SECTION_ASM_OP): Remove. (SDATA_SECTION_ASM_OP, SBSS_SECTION_ASM_OP): Remove. (READONLY_DATA_SECTION_ASM_OP): Remove. (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): Remove. (SDATA_SECTION_FUNCTION, SBSS_SECTION_FUNCTION): Remove. (TARGET_ASM_SELECT_SECTION): Remove. (SDATA_FLAG_CHAR, MEDIUM_FLAG_CHAR, LARGE_FLAG_CHAR): Remove. (SDATA_NAME_P, SMALL_NAME_P, MEDIUM_NAME_P): Remove. (LARGE_NAME_P, ENCODED_NAME_P): Remove. (ASM_OUTPUT_LABELREF): Remove. From-SVN: r65731
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 096e429..eb78ba6 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -1280,7 +1280,8 @@ do { \
((SYMBOL_REF_FLAGS (RTX) & SYMBOL_FLAG_EXTERNAL) != 0)
/* Subsequent bits are available for the target to use. */
-#define SYMBOL_FLAG_MACH_DEP (1 << 7)
+#define SYMBOL_FLAG_MACH_DEP_SHIFT 7
+#define SYMBOL_FLAG_MACH_DEP (1 << SYMBOL_FLAG_MACH_DEP_SHIFT)
/* Define a macro to look for REG_INC notes,
but save time on machines where they never exist. */