diff options
Diffstat (limited to 'gcc/cp/mangle.c')
-rw-r--r-- | gcc/cp/mangle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/mangle.c b/gcc/cp/mangle.c index d8c615b7848..81ac4ad1b22 100644 --- a/gcc/cp/mangle.c +++ b/gcc/cp/mangle.c @@ -1693,11 +1693,11 @@ write_builtin_type (tree type) if (itk == itk_none) { tree t = c_common_type_for_mode (TYPE_MODE (type), - TREE_UNSIGNED (type)); + TYPE_UNSIGNED (type)); if (type == t) { if (TYPE_PRECISION (type) == 128) - write_char (TREE_UNSIGNED (type) ? 'o' : 'n'); + write_char (TYPE_UNSIGNED (type) ? 'o' : 'n'); else /* Couldn't find this type. */ abort (); |