diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-12-14 00:09:31 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-12-14 00:09:31 +0000 |
commit | fda38c1fcec8a2128c900067c9a8e68363e9829d (patch) | |
tree | bf082a31775f8de607a18fc38ce35c64bb939b8c /gcc/config/we32k | |
parent | 744afe28fc74decbb4dde72ae3ba38869cccd03e (diff) | |
download | gcc-fda38c1fcec8a2128c900067c9a8e68363e9829d.tar.gz |
(ASM_OUTPUT_ASCII): Wrap in `do { ... } while (0)'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6225 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/we32k')
-rw-r--r-- | gcc/config/we32k/we32k.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/we32k/we32k.h b/gcc/config/we32k/we32k.h index a48e052e6a8..9282e32ac02 100644 --- a/gcc/config/we32k/we32k.h +++ b/gcc/config/we32k/we32k.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler. AT&T we32000 version. + Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc. Contributed by John Wehle (john@feith1.uucp) - Copyright (C) 1991-1992 Free Software Foundation, Inc. This file is part of GNU CC. @@ -857,7 +857,7 @@ do { union { float f; long l;} tem; \ fprintf (FILE, "\t.byte 0x%x\n", (VALUE)) #define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \ -{ \ +do { \ unsigned char *s; \ int i; \ for (i = 0, s = (unsigned char *)(PTR); i < (LEN); s++, i++) \ @@ -867,7 +867,7 @@ do { union { float f; long l;} tem; \ fprintf ((FILE), "%s0x%x", (i%8?",":""), (unsigned)*s); \ } \ fputs ("\n", (FILE)); \ -} +} while (0) /* This is how to output an insn to push a register on the stack. It need not be very fast code. */ |