diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-02 09:59:57 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-02 09:59:57 +0000 |
commit | 2f491b418313b32708d12804b0ea1899eff33e30 (patch) | |
tree | 918fb38ee8db4c60c48c8398ff8413404b9a7bcf /gcc/c-pragma.h | |
parent | 1197a03c1e636fb919521acbf35ec95e41a19461 (diff) | |
download | gcc-2f491b418313b32708d12804b0ea1899eff33e30.tar.gz |
Change HANDLE_PRAGMA macro so that it will work with USE_CPPLIB.
Add INSERT_ATTRIBUTES macro.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22165 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-pragma.h')
-rw-r--r-- | gcc/c-pragma.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/c-pragma.h b/gcc/c-pragma.h index 49c39fa591e..5478977608e 100644 --- a/gcc/c-pragma.h +++ b/gcc/c-pragma.h @@ -1,5 +1,5 @@ /* Pragma related interfaces. - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1998 Free Software Foundation, Inc. This file is part of GNU CC. @@ -18,6 +18,8 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HANDLE_SYSV_PRAGMA + /* Support #pragma weak iff ASM_WEAKEN_LABEL and ASM_OUTPUT_DEF are defined. */ #if defined (ASM_WEAKEN_LABEL) && defined (ASM_OUTPUT_DEF) @@ -43,4 +45,6 @@ enum pragma_state extern void handle_pragma_weak PROTO((enum pragma_state, char *, char *)); /* Handle a C style pragma */ -extern void handle_pragma_token PROTO((char *, tree)); +extern int handle_pragma_token PROTO((char *, tree)); + +#endif /* HANDLE_SYSV_PRAGMA */ |