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 55efdf4..22a1e2e 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -473,7 +473,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent) if (DECL_POINTER_ALIAS_SET_KNOWN_P (node)) fprintf (file, " alias set " HOST_WIDE_INT_PRINT_DEC, - DECL_POINTER_ALIAS_SET (node)); + (HOST_WIDE_INT) DECL_POINTER_ALIAS_SET (node)); } if (TREE_CODE (node) == FIELD_DECL) { @@ -614,7 +614,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent) fprintf (file, " align %d symtab %d alias set " HOST_WIDE_INT_PRINT_DEC, TYPE_ALIGN (node), TYPE_SYMTAB_ADDRESS (node), - TYPE_ALIAS_SET (node)); + (HOST_WIDE_INT) TYPE_ALIAS_SET (node)); if (TYPE_STRUCTURAL_EQUALITY_P (node)) fprintf (file, " structural equality"); |