diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-08-24 22:30:43 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-08-24 22:30:43 +0000 |
commit | 63a9cd949984777e7fa5017ce14bde9995960d76 (patch) | |
tree | 278ec62dd663bead7c50aec2a5a988b521efda95 /gcc/config/svr4.h | |
parent | 40bbd4c97495904b423a1cb2d8619a4c5bf56736 (diff) | |
download | gcc-63a9cd949984777e7fa5017ce14bde9995960d76.tar.gz |
Define ASM_OUTPUT_SECTION_NAME
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7972 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/svr4.h')
-rw-r--r-- | gcc/config/svr4.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/svr4.h b/gcc/config/svr4.h index 9b5d15cdb9e..48aca3cd254 100644 --- a/gcc/config/svr4.h +++ b/gcc/config/svr4.h @@ -476,6 +476,12 @@ dtors_section () \ } \ } +/* Switch into a generic section. + This is currently only used to support section attributes. */ + +#define ASM_OUTPUT_SECTION(FILE, NAME) \ + fprintf (FILE, ".section\t%s,\"a\",@progbits\n", NAME) + /* A C statement (sans semicolon) to output an element in the table of global constructors. */ #define ASM_OUTPUT_CONSTRUCTOR(FILE,NAME) \ |