From 145ba166af5483381ffd0b832b693c576e6e1f92 Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Fri, 6 Feb 2004 16:00:21 +0000 Subject: .: * 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. --- gas/read.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'gas/read.h') 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 -- cgit v1.2.1