* tc-arm.c (md_longopts): Fix misplaced #endif -- the -oabi option
authorRichard Earnshaw <richard.earnshaw@arm.com>
Mon, 14 Jan 2002 15:36:30 +0000 (15:36 +0000)
committerRichard Earnshaw <richard.earnshaw@arm.com>
Mon, 14 Jan 2002 15:36:30 +0000 (15:36 +0000)
is not dependent on ARM_BI_ENDIAN.

gas/ChangeLog
gas/config/tc-arm.c

index ed873928fca4ae30c2bab4a2676fe2877a877349..68714f0446dcc241c5ec092b8c2ae2f165127b00 100644 (file)
@@ -1,3 +1,8 @@
+2002-01-14  Richard Earnshaw  <rearnsha@arm.com>
+
+       * tc-arm.c (md_longopts): Fix misplaced #endif -- the -oabi option 
+       is not dependent on ARM_BI_ENDIAN.
+
 2002-01-14  Richard Earnshaw  <rearnsha@arm.com>
 
        * tc-arm.c (all error messages): Normalize capitalization of messages.
index cffbdaeb9f520f622d552058fb359889ff293c9e..a865b5c4a60c28cdcae028dff802c2acd5b596bc 100644 (file)
@@ -4243,7 +4243,7 @@ my_get_expression (ep, str)
 /* We handle all bad expressions here, so that we can report the faulty 
    instruction in the error message.  */
 void
-md_operand(expr)
+md_operand (expr)
      expressionS *expr;
 {
   if (in_my_get_expression)
@@ -9293,10 +9293,10 @@ struct option md_longopts[] =
   {"EB", no_argument, NULL, OPTION_EB},
 #define OPTION_EL (OPTION_MD_BASE + 1)
   {"EL", no_argument, NULL, OPTION_EL},
+#endif
 #ifdef OBJ_ELF
 #define OPTION_OABI (OPTION_MD_BASE +2)
   {"oabi", no_argument, NULL, OPTION_OABI},
-#endif
 #endif
   {NULL, no_argument, NULL, 0}
 };
This page took 0.041378 seconds and 4 git commands to generate.