summaryrefslogtreecommitdiff
path: root/gas/read.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2000-12-14 01:12:43 +0000
committerKazu Hirata <kazu@codesourcery.com>2000-12-14 01:12:43 +0000
commitcfce9c9cf8ff28edc4ed784a748ede60f1f6ed99 (patch)
tree9d5f47d4cdd3e8f8d475e4c452a71844c751f5d9 /gas/read.h
parente051eaac962446d14461f4ee630c9e0bc1931a41 (diff)
downloadbinutils-redhat-cfce9c9cf8ff28edc4ed784a748ede60f1f6ed99.tar.gz
2000-12-13 Kazu Hirata <kazu@hxi.com>
* as.h: Fix formatting. * cgen.h: Likewise. * dwarf2dbg.c: Likewise. * input-scrub.c: Likewise. * read.h: Likewise.
Diffstat (limited to 'gas/read.h')
-rw-r--r--gas/read.h26
1 files changed, 15 insertions, 11 deletions
diff --git a/gas/read.h b/gas/read.h
index 1aef827d14..b6929c8f67 100644
--- a/gas/read.h
+++ b/gas/read.h
@@ -15,19 +15,24 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with GAS; see the file COPYING. If not, write to
- the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with GAS; see the file COPYING. If not, write to the Free
+ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+ 02111-1307, USA. */
-extern char *input_line_pointer;/* -> char we are parsing now. */
+extern char *input_line_pointer; /* -> char we are parsing now. */
-#define PERMIT_WHITESPACE /* Define to make whitespace be allowed in */
-/* many syntactically unnecessary places. */
-/* Normally undefined. For compatibility */
-/* with ancient GNU cc. */
+/* Define to make whitespace be allowed in many syntactically
+ unnecessary places. Normally undefined. For compatibility with
+ ancient GNU cc. */
/* #undef PERMIT_WHITESPACE */
+#define PERMIT_WHITESPACE
#ifdef PERMIT_WHITESPACE
-#define SKIP_WHITESPACE() {if (* input_line_pointer == ' ') ++ input_line_pointer;}
+#define SKIP_WHITESPACE() \
+ { \
+ if (* input_line_pointer == ' ') \
+ ++ input_line_pointer; \
+ }
#else
#define SKIP_WHITESPACE() know(*input_line_pointer != ' ' )
#endif
@@ -46,7 +51,7 @@ extern char *input_line_pointer;/* -> char we are parsing now. */
#ifndef is_a_char
#define CHAR_MASK (0xff)
#define NOT_A_CHAR (CHAR_MASK+1)
-#define is_a_char(c) (((unsigned)(c)) <= CHAR_MASK)
+#define is_a_char(c) (((unsigned) (c)) <= CHAR_MASK)
#endif /* is_a_char() */
extern char lex_type[];
@@ -79,8 +84,7 @@ extern symbolS *mri_common_symbol;
extern int outputting_stabs_line_debug;
/* Possible arguments to .linkonce. */
-enum linkonce_type
-{
+enum linkonce_type {
LINKONCE_UNSET = 0,
LINKONCE_DISCARD,
LINKONCE_ONE_ONLY,