(enum parse_operand_result): Move outside of #ifdef OBJ_ELF so that non-ELF
authorNick Clifton <nickc@redhat.com>
Sat, 17 Jun 2006 16:05:41 +0000 (16:05 +0000)
committerNick Clifton <nickc@redhat.com>
Sat, 17 Jun 2006 16:05:41 +0000 (16:05 +0000)
targeted ARM ports can build.

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

index 44b5f6e2141376f96d9aef24f016cb2934d3f2c4..1c0a5620fd9e7beb69c4194df3b5bad3aa5b7be7 100644 (file)
@@ -1,3 +1,8 @@
+2006-06-17  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-arm.c (enum parse_operand_result): Move outside of
+       #ifdef OBJ_ELF so that non-ELF targeted ARM ports can build.
+
 2006-06-16  H.J. Lu  <hongjiu.lu@intel.com>
 
        * config/tc-i386.h (processor_type): New.
index 538b57e3baede5caf8ab4144b963cd1ffc394925..e4de83f7914b8c0232efec0e38c653dcb6010fe6 100644 (file)
@@ -79,6 +79,13 @@ static struct
   unsigned       sp_restored:1;
 } unwind;
 
+/* Bit N indicates that an R_ARM_NONE relocation has been output for
+   __aeabi_unwind_cpp_prN already if set. This enables dependencies to be
+   emitted only once per section, to save unnecessary bloat.  */
+static unsigned int marked_pr_dependency = 0;
+
+#endif /* OBJ_ELF */
+
 /* Results from operand parsing worker functions.  */
 
 typedef enum
@@ -88,13 +95,6 @@ typedef enum
   PARSE_OPERAND_FAIL_NO_BACKTRACK
 } parse_operand_result;
 
-/* Bit N indicates that an R_ARM_NONE relocation has been output for
-   __aeabi_unwind_cpp_prN already if set. This enables dependencies to be
-   emitted only once per section, to save unnecessary bloat.  */
-static unsigned int marked_pr_dependency = 0;
-
-#endif /* OBJ_ELF */
-
 enum arm_float_abi
 {
   ARM_FLOAT_ABI_HARD,
This page took 0.034284 seconds and 4 git commands to generate.