aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index 91b6331224e..5ee49b8b3a8 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -340,12 +340,12 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
if (DECL_NONLOCAL (node))
fputs (" nonlocal", file);
/* APPLE LOCAL begin CW asm blocks */
- if (DECL_CW_ASM_FUNCTION (node))
+ if (DECL_IASM_ASM_FUNCTION (node))
fputs (" asm-function", file);
- if (DECL_CW_ASM_NORETURN (node))
+ if (DECL_IASM_NORETURN (node))
fputs (" asm-noreturn", file);
- if (DECL_CW_ASM_FRAME_SIZE (node) != (unsigned int)-2)
- fprintf (file, " asm-frame-size %d", DECL_CW_ASM_FRAME_SIZE (node));
+ if (DECL_IASM_FRAME_SIZE (node) != (unsigned int)-2)
+ fprintf (file, " asm-frame-size %d", DECL_IASM_FRAME_SIZE (node));
/* APPLE LOCAL end CW asm blocks */
if (TREE_CODE (node) == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
fputs (" suppress-debug", file);