aboutsummaryrefslogtreecommitdiff
path: root/gas/read.h
diff options
context:
space:
mode:
Diffstat (limited to 'gas/read.h')
-rw-r--r--gas/read.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/gas/read.h b/gas/read.h
index 7ebcecb..b89ffcb 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
@@ -93,8 +90,7 @@ enum linkonce_type {
LINKONCE_SAME_CONTENTS
};
-#define IGNORE_OPCODE_CASE
-#ifdef IGNORE_OPCODE_CASE
+#ifndef TC_CASE_SENSITIVE
extern char original_case_string[];
#endif