From: Martin Liska Date: Thu, 20 Feb 2020 11:01:41 +0000 (+0100) Subject: Fix error message for Darwin. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=093bdf2cec611947fb69d8ced21a2d875166cba0;p=gcc.git Fix error message for Darwin. PR translation/93831 * config/darwin.c (darwin_override_options): Change 64b to 64-bit mode. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 55988302ac6..fc8f9e85bae 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2020-02-20 Martin Liska + + PR translation/93831 + * config/darwin.c (darwin_override_options): Change 64b to 64-bit mode. + 2020-02-20 Martin Liska PR translation/93830 diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index e7892617d9d..8131361715b 100644 --- a/gcc/config/darwin.c +++ b/gcc/config/darwin.c @@ -3302,7 +3302,8 @@ darwin_override_options (void) else if (DARWIN_X86 && darwin_symbol_stubs && TARGET_64BIT) { inform (input_location, - "%<-mpic-symbol-stubs%> is not required for 64b code (ignored)"); + "%<-mpic-symbol-stubs%> is not required for 64-bit code " + "(ignored)"); darwin_symbol_stubs = false; }