From b8f3283a7f03c24bbb9321bd3c9b77d60f339343 Mon Sep 17 00:00:00 2001
From: Iain Sandoe <iain@sandoe.co.uk>
Date: Mon, 18 Jan 2021 20:07:11 +0000
Subject: [PATCH] Darwin : Use a reserved name for the exception tables sect
 start.

We were using "GCC_except_table". Use "_GCC_except_table"
instead.

Signed-off-by: Kirill A. Korinsky <kirill@korins.ky>
---
 gcc/config/darwin.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git gcc/config/darwin.c gcc/config/darwin.c
index 966c20b746a..ec57492b939 100644
--- gcc/config/darwin.c
+++ gcc/config/darwin.c
@@ -2236,7 +2236,7 @@ darwin_emit_except_table_label (FILE *file)
 {
   char section_start_label[30];
 
-  ASM_GENERATE_INTERNAL_LABEL (section_start_label, "GCC_except_table",
+  ASM_GENERATE_INTERNAL_LABEL (section_start_label, "_GCC_except_table",
 			       except_table_label_num++);
   ASM_OUTPUT_LABEL (file, section_start_label);
 }
-- 
2.42.1

