diff options
Diffstat (limited to 'gas/read.h')
-rw-r--r-- | gas/read.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -33,6 +33,16 @@ extern char *input_line_pointer; /* -> char we are parsing now. */ #define SKIP_WHITESPACE() know(*input_line_pointer != ' ' ) #endif +#define SKIP_WHITESPACE_AFTER_NAME() \ + do \ + { \ + if (* input_line_pointer == '"') \ + ++ input_line_pointer; \ + if (* input_line_pointer == ' ') \ + ++ input_line_pointer; \ + } \ + while (0) + #define LEX_NAME (1) /* may continue a name */ #define LEX_BEGIN_NAME (2) /* may begin a name */ #define LEX_END_NAME (4) /* ends a name */ |