From cfa025ec7f7b1afa0c33ba1c5c47fb57d7350af8 Mon Sep 17 00:00:00 2001 From: James Lemke Date: Tue, 10 Feb 1998 22:38:15 +0000 Subject: [PATCH] Define default values of [TEXT|DATA|BSS]_SECTION_NAME --- gas/as.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gas/as.h b/gas/as.h index 8dfbe3c5f75..17f06d3af89 100644 --- a/gas/as.h +++ b/gas/as.h @@ -600,6 +600,11 @@ void eh_frame_convert_frag PARAMS ((fragS *)); /* this one starts the chain of target dependant headers */ #include "targ-env.h" +#ifndef TEXT_SECTION_NAME +#define TEXT_SECTION_NAME ".text" +#define DATA_SECTION_NAME ".data" +#define BSS_SECTION_NAME ".bss" +#endif #include "struc-symbol.h" #include "write.h" -- 2.30.2