diff options
author | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:09:34 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:09:34 +0000 |
commit | a87b3269340cca83c2197909ade48e28023b9cfd (patch) | |
tree | 70aaf742bce3e0cb67d7500523b91108cd3981cd /gas/config/tc-m68k.c | |
parent | 5b3fb530400928638f5a542f9bb8e37d7e4db8a9 (diff) | |
download | gdb-a87b3269340cca83c2197909ade48e28023b9cfd.zip gdb-a87b3269340cca83c2197909ade48e28023b9cfd.tar.gz gdb-a87b3269340cca83c2197909ade48e28023b9cfd.tar.bz2 |
White space and comment changes, and #ifdef __STDC__ becomes #if
__STDC__ == 1.
Diffstat (limited to 'gas/config/tc-m68k.c')
-rw-r--r-- | gas/config/tc-m68k.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c index bcc1a85..4387211 100644 --- a/gas/config/tc-m68k.c +++ b/gas/config/tc-m68k.c @@ -1,6 +1,7 @@ -/* m68k.c All the m68020 specific stuff in one convenient, huge, +/* tc-m68k.c All the m68020 specific stuff in one convenient, huge, slow to compile, easy to find file. - Copyright (C) 1987, 1991 Free Software Foundation, Inc. + + Copyright (C) 1987, 1991, 1992 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -381,7 +382,7 @@ struct m68k_incant { #define gettwo(x) (((x)->m_opcode)&0xffff) -#ifdef __STDC__ +#if __STDC__ == 1 static char *crack_operand(char *str, struct m68k_op *opP); static int get_num(struct m68k_exp *exp, int ok); @@ -397,7 +398,7 @@ static void s_data2(void); static void s_even(void); static void s_proc(void); -#else /* __STDC__ */ +#else /* not __STDC__ */ static char *crack_operand(); static int get_num(); @@ -413,7 +414,7 @@ static void s_data2(); static void s_even(); static void s_proc(); -#endif /* __STDC__ */ +#endif /* not __STDC__ */ static enum m68k_architecture current_architecture = 0; |