diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-04-17 12:15:06 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-04-17 12:15:06 -0700 |
commit | 78f308f51e2138b775182d2d4b09f53f96ec6175 (patch) | |
tree | fb1dd105984360e49c222934e60e6668b611c1f8 | |
parent | 119d0c36a6b2f36bd3b3db5c8c5c486016767e25 (diff) | |
download | gcc-78f308f51e2138b775182d2d4b09f53f96ec6175.zip gcc-78f308f51e2138b775182d2d4b09f53f96ec6175.tar.gz gcc-78f308f51e2138b775182d2d4b09f53f96ec6175.tar.bz2 |
(HANDLE_PRAGMA): Expect/pass 2nd arg of NODE, not CH.
From-SVN: r11841
-rw-r--r-- | gcc/config/sh/sh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index 6309a38..63e4598 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -1525,7 +1525,7 @@ extern char *output_far_jump(); 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) /* Set when processing a function with pragma interrupt turned on. */ |