* config/tc-hppa.c (pa_ip): Add parens to silence compiler.
authorJeff Law <law@redhat.com>
Thu, 23 Sep 1999 13:15:29 +0000 (13:15 +0000)
committerJeff Law <law@redhat.com>
Thu, 23 Sep 1999 13:15:29 +0000 (13:15 +0000)
gas/ChangeLog
gas/config/tc-hppa.c

index b0c2d7330ff8797fb5517e1043eca7c32ac71c18..f93c2b13f3b543916c3a21ca30081d9e33081d80 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 23 07:13:45 1999  Jerry Quinn <jquinn@nortelnetworks.com>
+
+       * config/tc-hppa.c (pa_ip):  Add parens to silence compiler.
+
 Wed Sep 22 09:37:19 1999  Jeffrey A Law  (law@cygnus.com)
 
         * config/tc-hppa.c (pa_ip): Avoid ANSI specific initialization.
index d93998facb56fa8ac565b510fc786dcbfbab32bb..96ff5761d92f10761387ddf645b1e8eae46d9af0 100644 (file)
@@ -2840,7 +2840,7 @@ pa_ip (str)
                  a = (opcode & (1 << 9)) != 0;
                  opcode &= ~ (3 << 8);
                  num = evaluate_absolute (&the_insn);
-                 if (a == 1 && num >= 0 || (a == 0 && num < 0))
+                 if ((a == 1 && num >= 0) || (a == 0 && num < 0))
                    break;
                  CHECK_FIELD (num, 8191, -8192, 0);
                  low_sign_unext (num, 14, &num);
@@ -2868,7 +2868,7 @@ pa_ip (str)
                  a = (opcode & (1 << 9)) != 0;
                  opcode &= ~ (3 << 8);
                  num = evaluate_absolute (&the_insn);
-                 if (a == 1 && num < 0 || (a == 0 && num > 0))
+                 if ((a == 1 && num < 0) || (a == 0 && num > 0))
                    break;
                  if (num % 4)
                    break;
@@ -3560,7 +3560,6 @@ pa_ip (str)
                case 'C':
                  {
                    struct pa_11_fp_reg_struct result;
-                   int regnum;
 
                    /* This should be more strict.  Small steps.  */
                    if (strict && *s != '%')