summaryrefslogtreecommitdiff
path: root/gas/config/tc-arm.c
diff options
context:
space:
mode:
authorRichard Earnshaw <richard.earnshaw@arm.com>2002-01-14 15:36:30 +0000
committerRichard Earnshaw <richard.earnshaw@arm.com>2002-01-14 15:36:30 +0000
commit3415bd0ec0a77ff5dcf69727f0d5c112ada707e1 (patch)
treefc430c6341e9be0b67b4c55b5c3e567a8ba5cfc8 /gas/config/tc-arm.c
parentb07781f19174e1db4e086a6094826a7b16837df1 (diff)
downloadbinutils-redhat-3415bd0ec0a77ff5dcf69727f0d5c112ada707e1.tar.gz
* tc-arm.c (md_longopts): Fix misplaced #endif -- the -oabi option
is not dependent on ARM_BI_ENDIAN.
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r--gas/config/tc-arm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index cffbdaeb9f..a865b5c4a6 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -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,11 +9293,11 @@ 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}
};