diff options
Diffstat (limited to 'gcc/godump.c')
-rw-r--r-- | gcc/godump.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/godump.c b/gcc/godump.c index 4c319c47737..3efbc7c988b 100644 --- a/gcc/godump.c +++ b/gcc/godump.c @@ -986,8 +986,7 @@ go_output_typedef (struct godump_container *container, tree decl) tree_to_shwi (TREE_VALUE (element))); else if (tree_fits_uhwi_p (TREE_VALUE (element))) snprintf (buf, sizeof buf, HOST_WIDE_INT_PRINT_UNSIGNED, - ((unsigned HOST_WIDE_INT) - tree_to_uhwi (TREE_VALUE (element)))); + tree_to_uhwi (TREE_VALUE (element))); else snprintf (buf, sizeof buf, HOST_WIDE_INT_PRINT_DOUBLE_HEX, ((unsigned HOST_WIDE_INT) |