summaryrefslogtreecommitdiff
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 5f422ed384b..dac05db895a 100644
--- a/gcc/config/rx/rx.c
+++ b/gcc/config/rx/rx.c
@@ -2593,9 +2593,9 @@ 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");
+ error ("use %<__builtin_rx_mvtc%> (0, ... ) to write arbitrary values to PSW");
mvtc_inform_done = 1;
return 0;
@@ -2642,7 +2642,8 @@ rx_expand_builtin (tree exp,
if (rx_allow_string_insns)
emit_insn (gen_rmpa ());
else
- error ("-mno-allow-string-insns forbids the generation of the RMPA instruction");
+ error ("%<-mno-allow-string-insns%> forbids the generation "
+ "of the RMPA instruction");
return NULL_RTX;
case RX_BUILTIN_MVFC: return rx_expand_builtin_mvfc (arg, target);
case RX_BUILTIN_MVTC: return rx_expand_builtin_mvtc (exp);