[gcc/devel/ranger] Fix error message for Darwin.

Aldy Hernandez aldyh@gcc.gnu.org
Wed Jun 17 19:03:07 GMT 2020


https://gcc.gnu.org/g:093bdf2cec611947fb69d8ced21a2d875166cba0

commit 093bdf2cec611947fb69d8ced21a2d875166cba0
Author: Martin Liska <mliska@suse.cz>
Date:   Thu Feb 20 12:01:41 2020 +0100

    Fix error message for Darwin.
    
            PR translation/93831
            * config/darwin.c (darwin_override_options): Change 64b to 64-bit mode.

Diff:
---
 gcc/ChangeLog       | 5 +++++
 gcc/config/darwin.c | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

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  <mliska@suse.cz>
+
+	PR translation/93831
+	* config/darwin.c (darwin_override_options): Change 64b to 64-bit mode.
+
 2020-02-20  Martin Liska  <mliska@suse.cz>
 
 	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;
     }


More information about the Gcc-cvs mailing list