diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-11-25 16:58:32 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-11-25 16:58:32 +0000 |
commit | 913d08334a78012ba496b669bc0077a98d6e9b3c (patch) | |
tree | 255cdd5d37dc128a7ad564ade1d1db3d7b9f9af2 /gcc/print-rtl.c | |
parent | 7a12ace5bc2c9be0cbcd4b13bcd89f2e79a16318 (diff) | |
download | gcc-913d08334a78012ba496b669bc0077a98d6e9b3c.tar.gz |
c-common.c (check_format_info): Don't call a variadic function with a non-literal format string.
* c-common.c (check_format_info): Don't call a variadic function
with a non-literal format string.
* c-decl.c (grokdeclarator, start_struct, finish_struct): Likewise.
* c-typeck.c (build_component_ref, build_unary_op, lvalue_or_else,
pedantic_lvalue_warning, error_init, pedwarn_init, warning_init):
Likewise.
* cccp.c (check_macro_name, do_xifdef, vwarning_with_line):
Likewise.
* collect2.c (collect_wait): Likewise.
* dbxout.c (dbxout_type): Likewise.
* gcc.c (do_spec_1): Likewise.
* genemit.c (gen_insn, gen_expand): Likewise.
* genrecog.c (write_switch, write_subroutine): Likewise.
* mips-tfile.c (catch_signal, botch): Likewise.
* print-rtl.c (print_rtx): Likewise.
* toplev.c (default_print_error_function, report_error_function,
_fatal_insn): Likewise.
From-SVN: r30666
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index ef8a40204ae..e54b2b49deb 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -146,8 +146,12 @@ print_rtx (in_rtx) if (XSTR (in_rtx, i) == 0) fputs (dump_for_graph ? " \\\"\\\"" : " \"\"", outfile); else - fprintf (outfile, dump_for_graph ? " (\\\"%s\\\")" : " (\"%s\")", - XSTR (in_rtx, i)); + { + if (dump_for_graph) + fprintf (outfile, " (\\\"%s\\\")", XSTR (in_rtx, i)); + else + fprintf (outfile, " (\"%s\")", XSTR (in_rtx, i)); + } sawclose = 1; break; @@ -188,13 +192,16 @@ print_rtx (in_rtx) } else { - char *str = X0STR (in_rtx, i); + const char * const str = X0STR (in_rtx, i); if (str == 0) fputs (dump_for_graph ? " \\\"\\\"" : " \"\"", outfile); else - fprintf (outfile, - dump_for_graph ? " (\\\"%s\\\")" : " (\"%s\")", - str); + { + if (dump_for_graph) + fprintf (outfile, " (\\\"%s\\\")", str); + else + fprintf (outfile, " (\"%s\")", str); + } } } break; |