diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2004-02-06 16:00:21 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2004-02-06 16:00:21 +0000 |
commit | e4475e391f7e5f113775573a822acb55612ddbb7 (patch) | |
tree | ae5e6c54833e64f819f1b21706cd34e6f6ae6814 /gas/read.h | |
parent | e4937fc1bb2a361a423e302630eb73b83b12aba8 (diff) | |
download | gdb-e4475e391f7e5f113775573a822acb55612ddbb7.zip gdb-e4475e391f7e5f113775573a822acb55612ddbb7.tar.gz gdb-e4475e391f7e5f113775573a822acb55612ddbb7.tar.bz2 |
.:
* 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.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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 |