2004-02-22 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gas / read.h
index 7ebcecb275c3f913206cb3b0a3327bde8837fee2..b89ffcb4fbfd786fc56f9a797789ffccdcf7ab04 100644 (file)
@@ -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
 
This page took 0.023457 seconds and 4 git commands to generate.