diff options
Diffstat (limited to 'gcc/c-pch.c')
-rw-r--r-- | gcc/c-pch.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-pch.c b/gcc/c-pch.c index 7371dbabe92..04eee838dfa 100644 --- a/gcc/c-pch.c +++ b/gcc/c-pch.c @@ -161,7 +161,7 @@ pch_init (void) /* The driver always provides a valid -o option. */ if (asm_file_name == NULL || strcmp (asm_file_name, "-") == 0) - fatal_error ("`%s' is not a valid output file", asm_file_name); + fatal_error ("%qs is not a valid output file", asm_file_name); asm_file_startpos = ftell (asm_out_file); @@ -284,7 +284,7 @@ c_common_valid_pch (cpp_reader *pfile, const char *name, int fd) { if (cpp_get_options (pfile)->warn_invalid_pch) cpp_error (pfile, CPP_DL_WARNING, - "%s: created on host `%.*s', but used on host `%s'", name, + "%s: created on host '%.*s', but used on host '%s'", name, v.host_machine_length, short_strings, host_machine); return 2; } @@ -294,7 +294,7 @@ c_common_valid_pch (cpp_reader *pfile, const char *name, int fd) { if (cpp_get_options (pfile)->warn_invalid_pch) cpp_error (pfile, CPP_DL_WARNING, - "%s: created for target `%.*s', but used for target `%s'", + "%s: created for target '%.*s', but used for target '%s'", name, v.target_machine_length, short_strings + v.host_machine_length, target_machine); return 2; @@ -307,7 +307,7 @@ c_common_valid_pch (cpp_reader *pfile, const char *name, int fd) { if (cpp_get_options (pfile)->warn_invalid_pch) cpp_error (pfile, CPP_DL_WARNING, - "%s: created by version `%.*s', but this is version `%s'", + "%s: created by version '%.*s', but this is version '%s'", name, v.version_length, (short_strings + v.host_machine_length + v.target_machine_length), |