pa.c (pa_print_operand): Use HOST_WIDE_INT_PRINT_DEC instead of "%d" for 'o' operand.
authorJohn David Anglin <danglin@gcc.gnu.org>
Thu, 28 May 2015 00:36:08 +0000 (00:36 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Thu, 28 May 2015 00:36:08 +0000 (00:36 +0000)
* config/pa/pa.c (pa_print_operand): Use HOST_WIDE_INT_PRINT_DEC
instead of "%d" for 'o' operand.

From-SVN: r223790

gcc/ChangeLog
gcc/config/pa/pa.c

index 6528d42438a84a62d71c705986a405cbffe6cf1f..903bd6903009f876c4725329da2b0c1b716a9cb2 100644 (file)
@@ -1,3 +1,8 @@
+2015-05-27  John David Anglin  <danglin@gcc.gnu.org>
+
+       * config/pa/pa.c (pa_print_operand): Use HOST_WIDE_INT_PRINT_DEC
+       instead of "%d" for 'o' operand.
+
 2015-05-27  Nathan Sidwell  <nathan@acm.org>
 
        PR c++/66270
index 090eeb4a80816159276b161939b4db0bd275939e..5551654c49e72cd28c572547799232b46af78ecb 100644 (file)
@@ -5285,7 +5285,7 @@ pa_print_operand (FILE *file, rtx x, int code)
     case 'o':
       gcc_assert (GET_CODE (x) == CONST_INT
                  && (INTVAL (x) == 1 || INTVAL (x) == 2 || INTVAL (x) == 3));
-      fprintf (file, "%d", INTVAL (x));
+      fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x));
       return;
     case 'O':
       gcc_assert (GET_CODE (x) == CONST_INT && exact_log2 (INTVAL (x)) >= 0);