summaryrefslogtreecommitdiff
path: root/gas/read.h
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2004-02-06 16:00:21 +0000
committerNathan Sidwell <nathan@codesourcery.com>2004-02-06 16:00:21 +0000
commit145ba166af5483381ffd0b832b693c576e6e1f92 (patch)
tree15d6771f4fa3e82ddf87d1040db4e21d6e858961 /gas/read.h
parentb221af3cf65c4dbdefbc9d5d9f131144b92791c2 (diff)
downloadbinutils-redhat-145ba166af5483381ffd0b832b693c576e6e1f92.tar.gz
.:
* dwarf2dbg.c (DWARF2_ADDR_SIZE): Remove trailing ';' * read.h (SKIP_WHITESPACE): Turn into an expression. * read.c (read_a_source_file): A pseudo is removed by having a NULL handler. testsuite: * gas/macros/test2.s: Lowercase it.
Diffstat (limited to 'gas/read.h')
-rw-r--r--gas/read.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/gas/read.h b/gas/read.h
index 7ebcecb275..2357cf9c39 100644
--- a/gas/read.h
+++ b/gas/read.h
@@ -30,10 +30,7 @@ extern char *input_line_pointer; /* -> char we are parsing now. */
#ifdef PERMIT_WHITESPACE
#define SKIP_WHITESPACE() \
- { \
- if (* input_line_pointer == ' ') \
- ++ input_line_pointer; \
- }
+ ((*input_line_pointer == ' ') ? ++input_line_pointer : 0)
#else
#define SKIP_WHITESPACE() know(*input_line_pointer != ' ' )
#endif