diff options
author | Jakub Jelinek <jakub@redhat.com> | 2019-10-25 00:27:10 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2019-10-25 00:27:10 +0200 |
commit | f8cb8bcde13df2f2b1a996567c849ec512eec210 (patch) | |
tree | 67adcb0e05087bc06e27587ef4d99ec1f233b4cd /gcc/config/rx | |
parent | ea3628bdeb9a5411aaa1aa567fa6bc005057482f (diff) | |
download | gcc-f8cb8bcde13df2f2b1a996567c849ec512eec210.zip gcc-f8cb8bcde13df2f2b1a996567c849ec512eec210.tar.gz gcc-f8cb8bcde13df2f2b1a996567c849ec512eec210.tar.bz2 |
arc.c (hwloop_optimize): Add missing space in string literal.
* config/arc/arc.c (hwloop_optimize): Add missing space in string
literal.
* config/rx/rx.c (rx_print_operand): Likewise.
* tree-vect-data-refs.c (vect_analyze_data_refs): Likewise.
* tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Likewise.
* ipa-sra.c (create_parameter_descriptors, process_scan_results):
Likewise.
* genemit.c (emit_c_code): Likewise.
* plugin.c (try_init_one_plugin): Likewise. Formatting fix.
cp/
* call.c (convert_arg_to_ellipsis): Add missing space in string
literal.
From-SVN: r277426
Diffstat (limited to 'gcc/config/rx')
-rw-r--r-- | gcc/config/rx/rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rx/rx.c b/gcc/config/rx/rx.c index c7ce19c..931205c 100644 --- a/gcc/config/rx/rx.c +++ b/gcc/config/rx/rx.c @@ -649,7 +649,7 @@ rx_print_operand (FILE * file, rtx op, int letter) case CTRLREG_INTB: fprintf (file, "intb"); break; default: warning (0, "unrecognized control register number: %d" - "- using %<psw%>", (int) INTVAL (op)); + " - using %<psw%>", (int) INTVAL (op)); fprintf (file, "psw"); break; } |