This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH GAS/ARM - recognize -mfpu=fpe2 and -mfpu=fpe3



The compiler has traditionally recognized options that vary the FPE 
version.  For compatibility, recognize these in the assembler as well.

2002-01-19  Keith Walker  <keith.walker@arm.com>

	* tc-arm.c (arm_fpus): Add fpe2 and fpe3.


Index: config/tc-arm.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-arm.c,v
retrieving revision 1.113
diff -p -r1.113 tc-arm.c
*** tc-arm.c	2002/01/18 17:01:53	1.113
--- tc-arm.c	2002/01/19 12:43:40
*************** static struct arm_fpu_option_table arm_f
*** 10815,10820 ****
--- 10815,10822 ----
  {
    {"softfpa",		FPU_NONE},
    {"fpe",		FPU_ARCH_FPE},
+   {"fpe2",		FPU_ARCH_FPE},
+   {"fpe3",		FPU_ARCH_FPA},	/* Third release supports LFM/SFM.  */
    {"fpa",		FPU_ARCH_FPA},
    {"fpa10",		FPU_ARCH_FPA},
    {"fpa11",		FPU_ARCH_FPA},

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]