From: Richard Kenner Date: Tue, 19 Oct 1993 21:48:29 +0000 (-0400) Subject: (print_int_cst_octal): Fix bug in last change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=25f3f9bf4433de4ab3881d15c3ec6bc54c31e301;p=gcc.git (print_int_cst_octal): Fix bug in last change. From-SVN: r5812 --- diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 67435268999..e2182e901e5 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -1386,11 +1386,10 @@ print_int_cst_octal (c) ; else if (width > HOST_BITS_PER_WIDE_INT) high &= (((HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT)) - 1); - else - { - high = 0; - low &= (((HOST_WIDE_INT) 1 << width) - 1); - } + else if (width == HOST_BITS_PER_WIDE_INT) + high = 0; + else + high = 0, low &= (((HOST_WIDE_INT) 1 << width) - 1); fprintf (asmfile, "0");