diff options
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index a6b7b99841f..65753befa0a 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -703,7 +703,7 @@ stabstr_O (tree cst) present. */ { const unsigned int width = TYPE_PRECISION (TREE_TYPE (cst)); - if (width == HOST_BITS_PER_WIDE_INT * 2) + if (width == HOST_BITS_PER_DOUBLE_INT) ; else if (width > HOST_BITS_PER_WIDE_INT) high &= (((HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT)) - 1); |