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-i860.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-i860.c')
-rw-r--r-- | gas/config/tc-i860.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/gas/config/tc-i860.c b/gas/config/tc-i860.c index 0e33d6a..ced89f2 100644 --- a/gas/config/tc-i860.c +++ b/gas/config/tc-i860.c @@ -1,5 +1,5 @@ -/* i860.c -- Assemble for the I860 - Copyright (C) 1989 Free Software Foundation, Inc. +/* tc-i860.c -- Assemble for the I860 + Copyright (C) 1989, 1992 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -132,13 +132,18 @@ struct i860_it { enum reloc_type reloc; } the_insn; -#ifdef __STDC__ +#if __STDC__ == 1 + static void print_insn(struct i860_it *insn); static int getExpression(char *str); -#else + +#else /* not __STDC__ */ + static void print_insn(); static int getExpression(); -#endif + +#endif /* not __STDC__ */ + static char *expr_end; static char last_expand; /* error if expansion after branch */ |