diff options
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 1d66769..f4b74d9 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -381,8 +381,8 @@ print_node (FILE *file, const char *prefix, tree node, int indent) fputs (" autoinline", file); if (code == FUNCTION_DECL && DECL_BUILT_IN (node)) fputs (" built-in", file); - if (code == FUNCTION_DECL && DECL_NO_STATIC_CHAIN (node)) - fputs (" no-static-chain", file); + if (code == FUNCTION_DECL && DECL_STATIC_CHAIN (node)) + fputs (" static-chain", file); if (code == FIELD_DECL && DECL_PACKED (node)) fputs (" packed", file); |