diff options
-rw-r--r-- | gcc/print-tree.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 396c3e2..cd7e808 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -475,6 +475,8 @@ print_node (file, prefix, node, indent) fputs (" needs-constructing", file); if (TYPE_TRANSPARENT_UNION (node)) fputs (" transparent-union", file); + if (TYPE_PACKED (node)) + fputs (" packed", file); if (TYPE_LANG_FLAG_0 (node)) fputs (" type_0", file); |