aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index 8b8ffb856da..c963039267f 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -2261,9 +2261,9 @@ struct tree_binfo GTY (())
#define DECL_DUPLICATE_DECL(NODE) (DECL_CHECK (NODE)->decl.duplicate_decl)
/* APPLE LOCAL begin CW asm blocks */
-#define DECL_CW_ASM_FUNCTION(NODE) (DECL_CHECK (NODE)->decl.cw_asm_function_flag)
-#define DECL_CW_ASM_NORETURN(NODE) (DECL_CHECK (NODE)->decl.cw_asm_noreturn_flag)
-#define DECL_CW_ASM_FRAME_SIZE(NODE) (DECL_CHECK (NODE)->decl.cw_asm_frame_size)
+#define DECL_IASM_ASM_FUNCTION(NODE) (DECL_CHECK (NODE)->decl.iasm_asm_function_flag)
+#define DECL_IASM_NORETURN(NODE) (DECL_CHECK (NODE)->decl.iasm_noreturn_flag)
+#define DECL_IASM_FRAME_SIZE(NODE) (DECL_CHECK (NODE)->decl.iasm_frame_size)
/* APPLE LOCAL end CW asm blocks */
/* Used in TREE_PUBLIC decls to indicate that copies of this DECL in
@@ -2431,9 +2431,9 @@ struct tree_decl GTY(())
/* APPLE LOCAL unused bits */
/* 9 unused bits. */
/* APPLE LOCAL begin CW asm blocks */
- unsigned cw_asm_function_flag : 1;
- unsigned cw_asm_noreturn_flag : 1;
- unsigned int cw_asm_frame_size;
+ unsigned iasm_asm_function_flag : 1;
+ unsigned iasm_noreturn_flag : 1;
+ unsigned int iasm_frame_size;
/* APPLE LOCAL end CW asm blocks */
union tree_decl_u1 {
@@ -3167,11 +3167,6 @@ typedef struct record_layout_info_s
/* True if we've seen a packed field that didn't have normal
alignment anyway. */
int packed_maybe_necessary;
- /* APPLE LOCAL begin bitfield reversal */
- int among_reversed_bitfields;
- unsigned int reversed_bitfield_type_size;
- unsigned int reversed_bitfield_bitpos;
- /* APPLE LOCAL end bitfield reversal */
} *record_layout_info;
extern void set_lang_adjust_rli (void (*) (record_layout_info));