(enum parse_operand_result): Move outside of #ifdef OBJ_ELF so that non-ELF

targeted ARM ports can build.
This commit is contained in:
Nick Clifton 2006-06-17 16:05:41 +00:00
parent b284a6567e
commit 8b1ad4545a
2 changed files with 12 additions and 7 deletions

View 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.

View 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,