diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-04-17 12:10:02 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-04-17 12:10:02 -0700 |
commit | 86d086ba048ec54762c1cb69589518e9db0e9651 (patch) | |
tree | 1471de3fad356dfb0a541dbb99ea946ad4863097 | |
parent | 141713de67817dc61539216886cbe5d6622c3ced (diff) | |
download | gcc-86d086ba048ec54762c1cb69589518e9db0e9651.zip gcc-86d086ba048ec54762c1cb69589518e9db0e9651.tar.gz gcc-86d086ba048ec54762c1cb69589518e9db0e9651.tar.bz2 |
(HANDLE_PRAGMA): Expect/pass 2nd arg of NODE, not CH.
From-SVN: r11839
-rw-r--r-- | gcc/config/h8300/h8300.h | 2 | ||||
-rw-r--r-- | gcc/config/i960/i960.h | 2 | ||||
-rw-r--r-- | gcc/config/nextstep.h | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 40768c4..a5544d9 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -1304,7 +1304,7 @@ do { char dstr[30]; \ text can be read. CH is the first character after the #pragma. The result of the expression is the terminating character found (newline or EOF). */ -#define HANDLE_PRAGMA(FILE, CH) handle_pragma (FILE, CH) +#define HANDLE_PRAGMA(FILE, NODE) handle_pragma (FILE, NODE) #define FINAL_PRESCAN_INSN(insn, operand, nop) final_prescan_insn (insn, operand,nop) diff --git a/gcc/config/i960/i960.h b/gcc/config/i960/i960.h index 98657ba..aa09de9 100644 --- a/gcc/config/i960/i960.h +++ b/gcc/config/i960/i960.h @@ -119,7 +119,7 @@ Boston, MA 02111-1307, USA. */ fprintf (asm_out_file, "\t.type\t0x%x;", (A & 0xf) + 2 * (A & ~0xf)) /* Handle pragmas for compatibility with Intel's compilers. */ -#define HANDLE_PRAGMA(FILE, CH) process_pragma (FILE, CH) +#define HANDLE_PRAGMA(FILE, NODE) process_pragma (FILE, NODE) /* Run-time compilation parameters selecting different hardware subsets. */ diff --git a/gcc/config/nextstep.h b/gcc/config/nextstep.h index 4937c99..667bd2b 100644 --- a/gcc/config/nextstep.h +++ b/gcc/config/nextstep.h @@ -240,8 +240,7 @@ Boston, MA 02111-1307, USA. */ /* How to parse #pragma's */ #undef HANDLE_PRAGMA -#define HANDLE_PRAGMA(finput, ch) \ - handle_pragma (finput, ch, &get_directive_line) +#define HANDLE_PRAGMA(FINPUT, NODE) handle_pragma (FINPUT, NODE) /* Give methods pretty symbol names on NeXT. */ |