diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-01-01 12:27:02 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-01-01 12:27:02 +0000 |
commit | c58b209a5dbfc740b7fa58b54fcf876fe37fd941 (patch) | |
tree | 084056090b17ca08c6d590d93ec42d45ceee9b53 /gcc/config/i370 | |
parent | 7347c2c511c96c1300b8eaa1570107f4a5251016 (diff) | |
download | gcc-c58b209a5dbfc740b7fa58b54fcf876fe37fd941.zip gcc-c58b209a5dbfc740b7fa58b54fcf876fe37fd941.tar.gz gcc-c58b209a5dbfc740b7fa58b54fcf876fe37fd941.tar.bz2 |
c-pragma.c (c_register_pragma): New.
* c-pragma.c (c_register_pragma): New.
(init_pragma): Use it.
* c-pragma.h (cpp_register_pragma): Don't declare.
(c_register_pragma): New.
* cpplib.h: Remove #ifdef GCC_C_PRAGMA_H.
* config/darwin.h (REGISTER_TARGET_PRAGMAS): Update.
* config/arm/arm.h (REGISTER_TARGET_PRAGMAS): Update.
* config/c4x/c4x.h (REGISTER_TARGET_PRAGMAS): Update.
* config/h8300/h8300.h (REGISTER_TARGET_PRAGMAS): Update.
* config/i370/i370.h (REGISTER_TARGET_PRAGMAS): Update.
* config/i960/i960.h (REGISTER_TARGET_PRAGMAS): Update.
* config/ia64/hpux.h (REGISTER_TARGET_PRAGMAS): Update.
* config/rs6000/rs6000.h (REGISTER_TARGET_PRAGMAS): Update.
* config/sh/sh.h (REGISTER_TARGET_PRAGMAS): Update.
* config/v850/v850.h (REGISTER_TARGET_PRAGMAS): Update.
* doc/tm.texi (REGISTER_TARGET_PRAGMAS): Update
cp:
* lex.c: Remove superfluous include of cpplib.h.
(CONSTRAINT): Define without conditions.
(init_cp_pragma): Use c_register_pragma.
From-SVN: r60740
Diffstat (limited to 'gcc/config/i370')
-rw-r--r-- | gcc/config/i370/i370.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/config/i370/i370.h b/gcc/config/i370/i370.h index 8021033..2011742 100644 --- a/gcc/config/i370/i370.h +++ b/gcc/config/i370/i370.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler. System/370 version. - Copyright (C) 1989, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 - Free Software Foundation, Inc. + Copyright (C) 1989, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, + 2003 Free Software Foundation, Inc. Contributed by Jan Stein (jan@cd.chalmers.se). Modified for OS/390 LanguageEnvironment C by Dave Pitts (dpitts@cozx.com) Hacked for Linux-ELF/390 by Linas Vepstas (linas@linas.org) @@ -150,8 +150,7 @@ extern int mvs_function_name_length; #ifdef TARGET_HLASM /* HLASM requires #pragma map. */ -#define REGISTER_TARGET_PRAGMAS(PFILE) \ - cpp_register_pragma (PFILE, 0, "map", i370_pr_map) +#define REGISTER_TARGET_PRAGMAS() c_register_pragma (0, "map", i370_pr_map) #endif /* TARGET_HLASM */ /* Define maximum length of page minus page escape overhead. */ |