diff options
author | Doug Evans <dje@gnu.org> | 1996-02-01 22:40:45 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-02-01 22:40:45 +0000 |
commit | 767d6be44ee07217b11278375a28d890caaee7c0 (patch) | |
tree | d87f447cb2aa617079312a7de34f30b91dbb5fab /gcc/config/h8300 | |
parent | 84a43794dff072e156da165a54164c831e1c2b4e (diff) | |
download | gcc-767d6be44ee07217b11278375a28d890caaee7c0.zip gcc-767d6be44ee07217b11278375a28d890caaee7c0.tar.gz gcc-767d6be44ee07217b11278375a28d890caaee7c0.tar.bz2 |
(HANDLE_PRAGMA): Change to expression whose value is terminating character.
From-SVN: r11152
Diffstat (limited to 'gcc/config/h8300')
-rw-r--r-- | gcc/config/h8300/h8300.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 2f75010..a3492a6 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -1269,12 +1269,12 @@ do { char dstr[30]; \ #define PRINT_OPERAND_ADDRESS(FILE, ADDR) print_operand_address (FILE, ADDR) /* Define this macro if you want to implement any pragmas. If defined, it - should be a C statement to be executed when #pragma is seen. The + should be a C expression to be executed when #pragma is seen. The argument STREAM is the stdio input stream from which the source text can be read. CH is the first character after the #pragma. The - statement should execute a `return' with the terminating character found + result of the expressionsis 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) #define FINAL_PRESCAN_INSN(insn, operand, nop) final_prescan_insn (insn, operand,nop) |