diff mbox series

Fix error message for Darwin.

Message ID f4f2f44d-3a39-89d9-fd27-8afb360782bb@suse.cz
State New
Headers show
Series Fix error message for Darwin. | expand

Commit Message

Martin Liška Feb. 20, 2020, 10:54 a.m. UTC
Hi.

It's one obvious documentation fix that I'm going to install.

Martin

gcc/ChangeLog:

2020-02-20  Martin Liska  <mliska@suse.cz>

	PR translation/93831
	* config/darwin.c (darwin_override_options): Change 64b to 64-bit mode.
---
  gcc/config/darwin.c | 3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

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;
     }