aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/rx/rx.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/rx/rx.c')
-rw-r--r--gcc/config/rx/rx.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/config/rx/rx.c b/gcc/config/rx/rx.c
index dac05db..f70e8f3 100644
--- a/gcc/config/rx/rx.c
+++ b/gcc/config/rx/rx.c
@@ -648,8 +648,8 @@ rx_print_operand (FILE * file, rtx op, int letter)
case CTRLREG_FINTV: fprintf (file, "fintv"); break;
case CTRLREG_INTB: fprintf (file, "intb"); break;
default:
- warning (0, "unrecognized control register number: %d - using 'psw'",
- (int) INTVAL (op));
+ warning (0, "unrecognized control register number: %d"
+ "- using %<psw%>", (int) INTVAL (op));
fprintf (file, "psw");
break;
}
@@ -2593,7 +2593,8 @@ valid_psw_flag (rtx op, const char *which)
return 1;
}
- error ("%<__builtin_rx_%s%> takes 'C', 'Z', 'S', 'O', 'I', or 'U'", which);
+ error ("%<__builtin_rx_%s%> takes %<C%>, %<Z%>, %<S%>, %<O%>, %<I%>, "
+ "or %<U%>", which);
if (!mvtc_inform_done)
error ("use %<__builtin_rx_mvtc%> (0, ... ) to write arbitrary values to PSW");
mvtc_inform_done = 1;