]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
(HANDLE_PRAGMA): Change to expression with terminating character as result.
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 1 Feb 1996 22:47:21 +0000 (22:47 +0000)
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 1 Feb 1996 22:47:21 +0000 (22:47 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11154 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/i960/i960.h
gcc/config/nextstep.h
gcc/config/sh/sh.h

index c13ad96f4c0fd31c7a2b77a3a0f8fc7ae28f906c..c67c01059b0e55ca99c2e89ef4530f90c4bf8e21 100644 (file)
@@ -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) return process_pragma (FILE, CH)
+#define HANDLE_PRAGMA(FILE, CH) process_pragma (FILE, CH)
 
 /* Run-time compilation parameters selecting different hardware subsets.  */
 
index bfd039c22416b24ce44c4d4a82692a179ac6af53..4937c99fbb3f474ec3a52f6e959725b916136c93 100644 (file)
@@ -241,7 +241,7 @@ Boston, MA 02111-1307, USA.  */
 
 #undef HANDLE_PRAGMA
 #define HANDLE_PRAGMA(finput, ch) \
-  return handle_pragma (finput, ch, &get_directive_line)
+  handle_pragma (finput, ch, &get_directive_line)
 
 /* Give methods pretty symbol names on NeXT. */
 
index bdad3b760e0ecc434434573ff422ec3182d4be52..236aaa61eaa83195164fb487750c665b62ab85e9 100644 (file)
@@ -1511,10 +1511,10 @@ extern char *output_far_jump();
 #define TARGET_MEM_FUNCTIONS
 
 /* 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
+   is 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 expression is the terminating character found
    (newline or EOF).  */
 #define HANDLE_PRAGMA(FILE, CH) return handle_pragma (FILE, CH)