diff options
author | Doug Evans <dje@gnu.org> | 1996-02-27 20:01:59 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-02-27 20:01:59 +0000 |
commit | 92fd61996f017e94d3a3a79b743f2f3617952a52 (patch) | |
tree | a1b6778f19f6bcbc106f076f8087d5362d26f15b | |
parent | 04065adbf9ddcc9324f66eb8929d4e2da4475baa (diff) | |
download | gcc-92fd61996f017e94d3a3a79b743f2f3617952a52.zip gcc-92fd61996f017e94d3a3a79b743f2f3617952a52.tar.gz gcc-92fd61996f017e94d3a3a79b743f2f3617952a52.tar.bz2 |
(HANDLE_PRAGMA): Delete `return'.
This change was supposed to have been made on Feb. 1, but somehow
never got checked in.
From-SVN: r11355
-rw-r--r-- | gcc/config/sh/sh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index f10c692..0680c50 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -1516,11 +1516,11 @@ extern char *output_far_jump(); /* Define this macro if you want to implement any pragmas. If defined, it is a C expression to be executed when #pragma is seen. The - argument STREAM is the stdio input stream from which the source + argument FILE is the stdio input stream from which the source 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) return handle_pragma (FILE, CH) +#define HANDLE_PRAGMA(FILE, CH) handle_pragma (FILE, CH) /* Set when processing a function with pragma interrupt turned on. */ |