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]

Re: Broken SH2a patches


Hi Andrew,

> Whatever technique we use it needs to be able to select an
> architecture, based on the instructions in the file, that
> specifies what architecture the file will run on, without
> excluding any other similar, but different, architectures
> that it may also run on (hence the fake architectures). Any
> ideas?

The simplest and most extensible scheme would be to drop the different machine values altogether. Just have one bfd_mach_sh number and one EF_SH_ number. Instead binary files would have a new .note section which contains an extensible bit mask of the architectures on which the instructions in that file can be run. When two or more files are combined this mask would be ANDed together to give the mask for the output binary and checked via XOR for incompatibilities.

Each instruction would also need one of these bitmasks. When a new architecture is added every instruction's bitmask would have to be updated if it was supported by the new architecture. This would only have to be done once though and there are macros that could be defined to make it simpler.

Anyway attached is a revised patch that includes your diagram of the dependencies (thanks) as well as some new base values and a fixed set of architecture definitions. (The problem you noticed with the -isa=sh2e selecting the sh2a-or-sh3e architecture was that the original definition of arch_sh2e defined it in terms of both sh2e_base and sh2a_base).

I have also tweaked the #defines for the various base architecture values so it should be easier to add new ones in the future.

What do you think of this version ?

Cheers
  Nick


Index: opcodes/sh-opc.h
===================================================================
RCS file: /cvs/src/src/opcodes/sh-opc.h,v
retrieving revision 1.22
diff -c -3 -p -r1.22 sh-opc.h
*** opcodes/sh-opc.h	29 Jul 2004 05:19:27 -0000	1.22
--- opcodes/sh-opc.h	20 Dec 2004 17:09:48 -0000
*************** typedef enum
*** 198,244 ****
    }
  sh_dsp_reg_nums;
  
! #define arch_sh1_base	0x0001
! #define arch_sh2_base	0x0002
! #define arch_sh3_base	0x0004
! #define arch_sh4_base	0x0008
! #define arch_sh4a_base	0x0010
! #define arch_sh2a_base  0x0020
! 
! /* This is an annotation on instruction types, but we abuse the arch
!    field in instructions to denote it.  */
! #define arch_op32       0x00100000 /* This is a 32-bit opcode.  */
! 
! #define arch_sh_no_mmu	0x04000000
! #define arch_sh_has_mmu 0x08000000
! #define arch_sh_no_co	0x10000000 /* neither FPU nor DSP co-processor */
! #define arch_sh_sp_fpu	0x20000000 /* single precision FPU */
! #define arch_sh_dp_fpu	0x40000000 /* double precision FPU */
! #define arch_sh_has_dsp	0x80000000
! 
! 
! #define arch_sh_base_mask 0x0000003f
! #define arch_opann_mask   0x00100000
! #define arch_sh_mmu_mask  0x0c000000
! #define arch_sh_co_mask   0xf0000000
! 
! 
! #define arch_sh1	(arch_sh1_base|arch_sh_no_mmu|arch_sh_no_co)
! #define arch_sh2	(arch_sh2_base|arch_sh_no_mmu|arch_sh_no_co)
! #define arch_sh2a	(arch_sh2a_base|arch_sh_no_mmu|arch_sh_dp_fpu)
! #define arch_sh2a_nofpu	(arch_sh2a_base|arch_sh_no_mmu|arch_sh_no_co)
! #define arch_sh2e	(arch_sh2_base|arch_sh2a_base|arch_sh_no_mmu|arch_sh_sp_fpu)
! #define arch_sh_dsp	(arch_sh2_base|arch_sh_no_mmu|arch_sh_has_dsp)
! #define arch_sh3_nommu	(arch_sh3_base|arch_sh_no_mmu|arch_sh_no_co)
! #define arch_sh3	(arch_sh3_base|arch_sh_has_mmu|arch_sh_no_co)
! #define arch_sh3e	(arch_sh3_base|arch_sh_has_mmu|arch_sh_sp_fpu)
! #define arch_sh3_dsp	(arch_sh3_base|arch_sh_has_mmu|arch_sh_has_dsp)
! #define arch_sh4	(arch_sh4_base|arch_sh_has_mmu|arch_sh_dp_fpu)
! #define arch_sh4a	(arch_sh4a_base|arch_sh_has_mmu|arch_sh_dp_fpu)
! #define arch_sh4al_dsp	(arch_sh4a_base|arch_sh_has_mmu|arch_sh_has_dsp)
! #define arch_sh4_nofpu	(arch_sh4_base|arch_sh_has_mmu|arch_sh_no_co)
! #define arch_sh4a_nofpu	(arch_sh4a_base|arch_sh_has_mmu|arch_sh_no_co)
! #define arch_sh4_nommu_nofpu (arch_sh4_base|arch_sh_no_mmu|arch_sh_no_co)
  
  #define SH_MERGE_ARCH_SET(SET1, SET2) ((SET1) & (SET2))
  #define SH_VALID_BASE_ARCH_SET(SET) (((SET) & arch_sh_base_mask) != 0)
--- 198,255 ----
    }
  sh_dsp_reg_nums;
  
! /* Return a mask with bits LO to HI (inclusive) set.  */
! #define MASK(LO,HI)  (  LO < 1   ? ((1 << (HI + 1)) - 1) \
! 		      : HI > 30  ? (-1 << LO) \
! 		      : LO == HI ? (1 << LO) \
! 		      :            (((1 << (HI + 1)) - 1) & (-1 << LO)))
! 
! #define arch_sh1_base	    (1 << 0)
! #define arch_sh2_base	    (1 << 1)
! #define arch_sh2a_sh3_base  (1 << 2)
! #define arch_sh3_base	    (1 << 3)
! #define arch_sh2a_sh4_base  (1 << 4)
! #define arch_sh4_base	    (1 << 5)
! #define arch_sh4a_base	    (1 << 6)
! #define arch_sh2a_base      (1 << 7)
! #define arch_sh_base_mask   MASK (0, 7)
! 
! /* This is an annotation on instruction types, but we
!    abuse the arch field in instructions to denote it.  */
! #define arch_op32          (1 << 25)  /* This is a 32-bit opcode.  */
! #define arch_opann_mask    MASK (25, 25)
! 
! #define arch_sh_no_mmu	   (1 << 26)
! #define arch_sh_has_mmu    (1 << 27)
! #define arch_sh_mmu_mask   MASK (26, 27)
! 
! #define arch_sh_no_co	   (1 << 28)  /* Neither FPU nor DSP co-processor.  */
! #define arch_sh_sp_fpu	   (1 << 29)  /* Single precision FPU.  */
! #define arch_sh_dp_fpu	   (1 << 30)  /* Double precision FPU.  */
! #define arch_sh_has_dsp	   (1 << 31)
! #define arch_sh_co_mask    MASK (28, 31)
! 
! 
! #define arch_sh1	                   (arch_sh1_base     |arch_sh_no_mmu |arch_sh_no_co)
! #define arch_sh2	                   (arch_sh2_base     |arch_sh_no_mmu |arch_sh_no_co)
! #define arch_sh2a	                   (arch_sh2a_base    |arch_sh_no_mmu |arch_sh_dp_fpu)
! #define arch_sh2a_nofpu	                   (arch_sh2a_base    |arch_sh_no_mmu |arch_sh_no_co)
! #define arch_sh2e	                   (arch_sh2_base     |arch_sh_no_mmu |arch_sh_sp_fpu)
! #define arch_sh_dsp	                   (arch_sh2_base     |arch_sh_no_mmu |arch_sh_has_dsp)
! #define arch_sh3_nommu	                   (arch_sh3_base     |arch_sh_no_mmu |arch_sh_no_co)
! #define arch_sh3	                   (arch_sh3_base     |arch_sh_has_mmu|arch_sh_no_co)
! #define arch_sh3e	                   (arch_sh3_base     |arch_sh_has_mmu|arch_sh_sp_fpu)
! #define arch_sh3_dsp	                   (arch_sh3_base     |arch_sh_has_mmu|arch_sh_has_dsp)
! #define arch_sh4	                   (arch_sh4_base     |arch_sh_has_mmu|arch_sh_dp_fpu)
! #define arch_sh4a	                   (arch_sh4a_base    |arch_sh_has_mmu|arch_sh_dp_fpu)
! #define arch_sh4al_dsp	                   (arch_sh4a_base    |arch_sh_has_mmu|arch_sh_has_dsp)
! #define arch_sh4_nofpu	                   (arch_sh4_base     |arch_sh_has_mmu|arch_sh_no_co)
! #define arch_sh4a_nofpu	                   (arch_sh4a_base    |arch_sh_has_mmu|arch_sh_no_co)
! #define arch_sh4_nommu_nofpu               (arch_sh4_base     |arch_sh_no_mmu |arch_sh_no_co)
! #define arch_sh2a_nofpu_or_sh4_nommu_nofpu (arch_sh2a_sh3_base|arch_sh_no_mmu |arch_sh_no_co)
! #define arch_sh2a_nofpu_or_sh3_nommu       (arch_sh2a_sh3_base|arch_sh_no_mmu |arch_sh_no_co)
! #define arch_sh2a_or_sh3e                  (arch_sh2a_sh4_base)
! #define arch_sh2a_or_sh4                   (arch_sh2a_sh4_base                |arch_sh_dp_fpu)
  
  #define SH_MERGE_ARCH_SET(SET1, SET2) ((SET1) & (SET2))
  #define SH_VALID_BASE_ARCH_SET(SET) (((SET) & arch_sh_base_mask) != 0)
*************** bfd_boolean sh_merge_bfd_arch (bfd *ibfd
*** 270,324 ****
  
  /* Below are the 'architecture sets'.
     They describe the following inheritance graph:
! 
                  SH1
                   |
                  SH2
!    .------------'|`--------------------.
!   /              |                      \
! SH-DSP          SH3-nommu               SH2E
!  |               |`--------.             |
!  |               |          \            |
!  |              SH3     SH4-nommu-nofpu  |
!  |               |           |           |
!  | .------------'|`----------+---------. |
!  |/                         /           \|
!  |               | .-------'             |
!  |               |/                      |
! SH3-dsp         SH4-nofpu               SH3E
!  |               |`--------------------. |
!  |               |                      \|
!  |              SH4A-nofpu              SH4
!  | .------------' `--------------------. |
!  |/                                     \|
! SH4AL-dsp                               SH4A
! 
  */
  
! /* Central branches */
! #define arch_sh1_up       (arch_sh1 | arch_sh2_up)
! #define arch_sh2_up       (arch_sh2 | arch_sh2e_up | arch_sh2a_nofpu_up | arch_sh3_nommu_up | arch_sh_dsp_up)
! #define arch_sh3_nommu_up (arch_sh3_nommu | arch_sh3_up | arch_sh4_nommu_nofpu_up)
! #define arch_sh3_up       (arch_sh3 | arch_sh3e_up | arch_sh3_dsp_up | arch_sh4_nofp_up)
! #define arch_sh4_nommu_nofpu_up (arch_sh4_nommu_nofpu | arch_sh4_nofp_up)
! #define arch_sh4_nofp_up  (arch_sh4_nofpu | arch_sh4_up | arch_sh4a_nofp_up)
! #define arch_sh4a_nofp_up (arch_sh4a_nofpu | arch_sh4a_up | arch_sh4al_dsp_up)
! 
! /* Right branch */
! #define arch_sh2e_up (arch_sh2e | arch_sh2a_up | arch_sh3e_up)
! #define arch_sh3e_up (arch_sh3e | arch_sh4_up)
! #define arch_sh4_up  (arch_sh4 | arch_sh4a_up)
! #define arch_sh4a_up (arch_sh4a)
! 
! /* Left branch */
! #define arch_sh_dsp_up    (arch_sh_dsp | arch_sh3_dsp_up)
! #define arch_sh3_dsp_up   (arch_sh3_dsp | arch_sh4al_dsp_up)
! #define arch_sh4al_dsp_up (arch_sh4al_dsp)
! 
! /* SH 2a branched off SH2e, adding a lot but not all of SH4 and SH4a.  */
! #define arch_sh2a_up        (arch_sh2a)
! #define arch_sh2a_nofpu_up  (arch_sh2a_nofpu | arch_sh2a_up)
! 
  
  typedef struct
  {
--- 281,368 ----
  
  /* Below are the 'architecture sets'.
     They describe the following inheritance graph:
!    
                  SH1
                   |
                  SH2
!    .------------'|`--------------------------------.
!   /              |                                  \
! SH-DSP          SH3-nommu/SH2A-nofpu               SH2E
!  |               |          |`--------------------. |
!  |               |          |                      \|
!  |              SH3-nommu  SH4-nm-nf/SH2A-nofpu    SH3E/SH2A
!  |               |\         |          |            |     |
!  |               | `------. |        SH2A-nofpu     |     |
!  |               |         \|            \          |     |
!  |              SH3     SH4-nommu-nofpu   `---------+---. |
!  |              /|\         |                       |    \|
!  | .-----------' | `--------+---------------------. |    SH4/SH2A
!  |/              |          /                      \|     |
!  |               | .-------'                        |     |
!  |               |/                                 |     |
! SH3-dsp         SH4-nofpu                          SH3E  /|
!  |               |`-------------------------------. | .-' |
!  |               |                                 \|/    |
!  |              SH4A-nofpu                         SH4   SH2A
!  | .------------' `-------------------------------. |
!  |/                                                \|
! SH4AL-dsp                                          SH4A
  */
  
! /* Central branches.  */
! #define arch_sh1_up                            (arch_sh1 \
! 		| arch_sh2_up)
! #define arch_sh2_up                            (arch_sh2 \
! 		| arch_sh2e_up \
! 		| arch_sh2a_nofpu_or_sh3_nommu_up \
! 		| arch_sh_dsp_up)
! #define arch_sh2a_nofpu_or_sh3_nommu_up        (arch_sh2a_nofpu_or_sh3_nommu \
! 		| arch_sh2a_nofpu_or_sh4_nommu_nofpu_up \
! 		| arch_sh2a_or_sh3e_up \
! 		| arch_sh3_nommu_up)
! #define arch_sh2a_nofpu_or_sh4_nommu_nofpu_up  (arch_sh2a_nofpu_or_sh4_nommu_nofpu \
! 		| arch_sh2a_nofpu_up \
! 		| arch_sh4_nommu_nofpu_up)
! #define arch_sh2a_nofpu_up                     (arch_sh2a_nofpu \
! 		| arch_sh2a_or_sh4_up)
! #define arch_sh3_nommu_up                      (arch_sh3_nommu \
! 		| arch_sh3_up \
! 		| arch_sh4_nommu_nofpu_up)
! #define arch_sh3_up                            (arch_sh3 \
! 		| arch_sh3e_up \
! 		| arch_sh3_dsp_up \
! 		| arch_sh4_nofp_up)
! #define arch_sh4_nommu_nofpu_up                (arch_sh4_nommu_nofpu \
! 		| arch_sh4_nofp_up)
! #define arch_sh4_nofp_up                       (arch_sh4_nofpu \
! 		| arch_sh4_up \
! 		| arch_sh4a_nofp_up)
! #define arch_sh4a_nofp_up                      (arch_sh4a_nofpu \
! 		| arch_sh4a_up \
! 		| arch_sh4al_dsp_up)
! 
! /* Right branches.  */
! #define arch_sh2e_up                           (arch_sh2e \
! 		| arch_sh2a_or_sh3e_up)
! #define arch_sh2a_or_sh3e_up                   (arch_sh2a_or_sh3e \
! 		| arch_sh2a_or_sh4_up \
! 		| arch_sh3e_up)
! #define arch_sh2a_or_sh4_up                    (arch_sh2a_or_sh4 \
! 		| arch_sh2a_up \
! 		| arch_sh4_up)
! #define arch_sh2a_up                           (arch_sh2a)
! #define arch_sh3e_up                           (arch_sh3e \
! 		| arch_sh4_up)
! #define arch_sh4_up                            (arch_sh4 \
! 		| arch_sh4a_up)
! #define arch_sh4a_up                           (arch_sh4a)
! 
! /* Left branch.  */
! #define arch_sh_dsp_up                         (arch_sh_dsp  \
! 		| arch_sh3_dsp_up)
! #define arch_sh3_dsp_up                        (arch_sh3_dsp \
! 		| arch_sh4al_dsp_up)
! #define arch_sh4al_dsp_up                      (arch_sh4al_dsp)
  
  typedef struct
  {
*************** const sh_opcode_info sh_table[] =
*** 634,640 ****
  
  /* 11001111i8*1.... or.b #<imm>,@(R0,GBR)*/{"or.b",{A_IMM,A_R0_GBR},{HEX_C,HEX_F,IMM0_8}, arch_sh1_up},
  
! /* 0000nnnn10000011 pref @<REG_N>       */{"pref",{A_IND_N},{HEX_0,REG_N,HEX_8,HEX_3}, arch_sh4_nommu_nofpu_up | arch_sh2a_nofpu_up},
  
  /* 0000nnnn11010011 prefi @<REG_N>      */{"prefi",{A_IND_N},{HEX_0,REG_N,HEX_D,HEX_3}, arch_sh4a_nofp_up},
  
--- 678,684 ----
  
  /* 11001111i8*1.... or.b #<imm>,@(R0,GBR)*/{"or.b",{A_IMM,A_R0_GBR},{HEX_C,HEX_F,IMM0_8}, arch_sh1_up},
  
! /* 0000nnnn10000011 pref @<REG_N>       */{"pref",{A_IND_N},{HEX_0,REG_N,HEX_8,HEX_3}, arch_sh2a_nofpu_or_sh4_nommu_nofpu_up},
  
  /* 0000nnnn11010011 prefi @<REG_N>      */{"prefi",{A_IND_N},{HEX_0,REG_N,HEX_D,HEX_3}, arch_sh4a_nofp_up},
  
*************** const sh_opcode_info sh_table[] =
*** 664,672 ****
  
  /* repeat start end #<imm>        	*/{"repeat",{A_DISP_PC,A_DISP_PC,A_IMM},{REPEAT,HEX_2,IMM0_8,HEX_8}, arch_sh_dsp_up},
  
! /* 0100nnnnmmmm1100 shad <REG_M>,<REG_N>*/{"shad",{ A_REG_M,A_REG_N},{HEX_4,REG_N,REG_M,HEX_C}, arch_sh3_nommu_up | arch_sh2a_nofpu_up},
  
! /* 0100nnnnmmmm1101 shld <REG_M>,<REG_N>*/{"shld",{ A_REG_M,A_REG_N},{HEX_4,REG_N,REG_M,HEX_D}, arch_sh3_nommu_up | arch_sh2a_nofpu_up},
  
  /* 0100nnnn00100000 shal <REG_N>        */{"shal",{A_REG_N},{HEX_4,REG_N,HEX_2,HEX_0}, arch_sh1_up},
  
--- 708,716 ----
  
  /* repeat start end #<imm>        	*/{"repeat",{A_DISP_PC,A_DISP_PC,A_IMM},{REPEAT,HEX_2,IMM0_8,HEX_8}, arch_sh_dsp_up},
  
! /* 0100nnnnmmmm1100 shad <REG_M>,<REG_N>*/{"shad",{ A_REG_M,A_REG_N},{HEX_4,REG_N,REG_M,HEX_C}, arch_sh2a_nofpu_or_sh3_nommu_up},
  
! /* 0100nnnnmmmm1101 shld <REG_M>,<REG_N>*/{"shld",{ A_REG_M,A_REG_N},{HEX_4,REG_N,REG_M,HEX_D}, arch_sh2a_nofpu_or_sh3_nommu_up},
  
  /* 0100nnnn00100000 shal <REG_N>        */{"shal",{A_REG_N},{HEX_4,REG_N,HEX_2,HEX_0}, arch_sh1_up},
  
*************** const sh_opcode_info sh_table[] =
*** 985,1007 ****
  {"pswap", {DSP_REG_Y,DSP_REG_N},{PPI,PPIC,HEX_B,HEX_D,HEX_4}, arch_sh4al_dsp_up},
  
  /* 1111nnnn01011101 fabs <F_REG_N>     */{"fabs",{F_REG_N},{HEX_F,REG_N,HEX_5,HEX_D}, arch_sh2e_up},
! /* 1111nnn001011101 fabs <D_REG_N>     */{"fabs",{D_REG_N},{HEX_F,REG_N,HEX_5,HEX_D}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm0000 fadd <F_REG_M>,<F_REG_N>*/{"fadd",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_0}, arch_sh2e_up},
! /* 1111nnn0mmm00000 fadd <D_REG_M>,<D_REG_N>*/{"fadd",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_0}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm0100 fcmp/eq <F_REG_M>,<F_REG_N>*/{"fcmp/eq",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_4}, arch_sh2e_up},
! /* 1111nnn0mmm00100 fcmp/eq <D_REG_M>,<D_REG_N>*/{"fcmp/eq",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_4}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm0101 fcmp/gt <F_REG_M>,<F_REG_N>*/{"fcmp/gt",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_5}, arch_sh2e_up},
! /* 1111nnn0mmm00101 fcmp/gt <D_REG_M>,<D_REG_N>*/{"fcmp/gt",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_5}, arch_sh4_up | arch_sh2a_up},
  
! /* 1111nnn010111101 fcnvds <D_REG_N>,FPUL*/{"fcnvds",{D_REG_N,FPUL_M},{HEX_F,REG_N_D,HEX_B,HEX_D}, arch_sh4_up | arch_sh2a_up},
  
! /* 1111nnn010101101 fcnvsd FPUL,<D_REG_N>*/{"fcnvsd",{FPUL_M,D_REG_N},{HEX_F,REG_N_D,HEX_A,HEX_D}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm0011 fdiv <F_REG_M>,<F_REG_N>*/{"fdiv",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_3}, arch_sh2e_up},
! /* 1111nnn0mmm00011 fdiv <D_REG_M>,<D_REG_N>*/{"fdiv",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_3}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnmm11101101 fipr <V_REG_M>,<V_REG_N>*/{"fipr",{V_REG_M,V_REG_N},{HEX_F,REG_NM,HEX_E,HEX_D}, arch_sh4_up},
  
--- 1029,1051 ----
  {"pswap", {DSP_REG_Y,DSP_REG_N},{PPI,PPIC,HEX_B,HEX_D,HEX_4}, arch_sh4al_dsp_up},
  
  /* 1111nnnn01011101 fabs <F_REG_N>     */{"fabs",{F_REG_N},{HEX_F,REG_N,HEX_5,HEX_D}, arch_sh2e_up},
! /* 1111nnn001011101 fabs <D_REG_N>     */{"fabs",{D_REG_N},{HEX_F,REG_N,HEX_5,HEX_D}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm0000 fadd <F_REG_M>,<F_REG_N>*/{"fadd",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_0}, arch_sh2e_up},
! /* 1111nnn0mmm00000 fadd <D_REG_M>,<D_REG_N>*/{"fadd",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_0}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm0100 fcmp/eq <F_REG_M>,<F_REG_N>*/{"fcmp/eq",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_4}, arch_sh2e_up},
! /* 1111nnn0mmm00100 fcmp/eq <D_REG_M>,<D_REG_N>*/{"fcmp/eq",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_4}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm0101 fcmp/gt <F_REG_M>,<F_REG_N>*/{"fcmp/gt",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_5}, arch_sh2e_up},
! /* 1111nnn0mmm00101 fcmp/gt <D_REG_M>,<D_REG_N>*/{"fcmp/gt",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_5}, arch_sh2a_or_sh4_up},
  
! /* 1111nnn010111101 fcnvds <D_REG_N>,FPUL*/{"fcnvds",{D_REG_N,FPUL_M},{HEX_F,REG_N_D,HEX_B,HEX_D}, arch_sh2a_or_sh4_up},
  
! /* 1111nnn010101101 fcnvsd FPUL,<D_REG_N>*/{"fcnvsd",{FPUL_M,D_REG_N},{HEX_F,REG_N_D,HEX_A,HEX_D}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm0011 fdiv <F_REG_M>,<F_REG_N>*/{"fdiv",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_3}, arch_sh2e_up},
! /* 1111nnn0mmm00011 fdiv <D_REG_M>,<D_REG_N>*/{"fdiv",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_3}, arch_sh2a_or_sh4_up},
  
  /* 1111nnmm11101101 fipr <V_REG_M>,<V_REG_N>*/{"fipr",{V_REG_M,V_REG_N},{HEX_F,REG_NM,HEX_E,HEX_D}, arch_sh4_up},
  
*************** const sh_opcode_info sh_table[] =
*** 1012,1053 ****
  /* 1111nnnn00011101 flds <F_REG_N>,FPUL*/{"flds",{F_REG_N,FPUL_M},{HEX_F,REG_N,HEX_1,HEX_D}, arch_sh2e_up},
  
  /* 1111nnnn00101101 float FPUL,<F_REG_N>*/{"float",{FPUL_M,F_REG_N},{HEX_F,REG_N,HEX_2,HEX_D}, arch_sh2e_up},
! /* 1111nnn000101101 float FPUL,<D_REG_N>*/{"float",{FPUL_M,D_REG_N},{HEX_F,REG_N,HEX_2,HEX_D}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm1110 fmac FR0,<F_REG_M>,<F_REG_N>*/{"fmac",{F_FR0,F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_E}, arch_sh2e_up},
  
  /* 1111nnnnmmmm1100 fmov <F_REG_M>,<F_REG_N>*/{"fmov",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_C}, arch_sh2e_up},
! /* 1111nnn1mmmm1100 fmov <DX_REG_M>,<DX_REG_N>*/{"fmov",{DX_REG_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_C}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm1000 fmov @<REG_M>,<F_REG_N>*/{"fmov",{A_IND_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_8}, arch_sh2e_up},
! /* 1111nnn1mmmm1000 fmov @<REG_M>,<DX_REG_N>*/{"fmov",{A_IND_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_8}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm1010 fmov <F_REG_M>,@<REG_N>*/{"fmov",{F_REG_M,A_IND_N},{HEX_F,REG_N,REG_M,HEX_A}, arch_sh2e_up},
! /* 1111nnnnmmm11010 fmov <DX_REG_M>,@<REG_N>*/{"fmov",{DX_REG_M,A_IND_N},{HEX_F,REG_N,REG_M,HEX_A}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm1001 fmov @<REG_M>+,<F_REG_N>*/{"fmov",{A_INC_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_9}, arch_sh2e_up},
! /* 1111nnn1mmmm1001 fmov @<REG_M>+,<DX_REG_N>*/{"fmov",{A_INC_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_9}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm1011 fmov <F_REG_M>,@-<REG_N>*/{"fmov",{F_REG_M,A_DEC_N},{HEX_F,REG_N,REG_M,HEX_B}, arch_sh2e_up},
! /* 1111nnnnmmm11011 fmov <DX_REG_M>,@-<REG_N>*/{"fmov",{DX_REG_M,A_DEC_N},{HEX_F,REG_N,REG_M,HEX_B}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm0110 fmov @(R0,<REG_M>),<F_REG_N>*/{"fmov",{A_IND_R0_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_6}, arch_sh2e_up},
! /* 1111nnn1mmmm0110 fmov @(R0,<REG_M>),<DX_REG_N>*/{"fmov",{A_IND_R0_REG_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_6}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnnmmmm0111 fmov <F_REG_M>,@(R0,<REG_N>)*/{"fmov",{F_REG_M,A_IND_R0_REG_N},{HEX_F,REG_N,REG_M,HEX_7}, arch_sh2e_up},
! /* 1111nnnnmmm10111 fmov <DX_REG_M>,@(R0,<REG_N>)*/{"fmov",{DX_REG_M,A_IND_R0_REG_N},{HEX_F,REG_N,REG_M,HEX_7}, arch_sh4_up | arch_sh2a_up},
! 
! /* 1111nnn1mmmm1000 fmov.d @<REG_M>,<DX_REG_N>*/{"fmov.d",{A_IND_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_8}, arch_sh4_up | arch_sh2a_up},
! 
! /* 1111nnnnmmm11010 fmov.d <DX_REG_M>,@<REG_N>*/{"fmov.d",{DX_REG_M,A_IND_N},{HEX_F,REG_N,REG_M,HEX_A}, arch_sh4_up | arch_sh2a_up},
! 
! /* 1111nnn1mmmm1001 fmov.d @<REG_M>+,<DX_REG_N>*/{"fmov.d",{A_INC_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_9}, arch_sh4_up | arch_sh2a_up},
! 
! /* 1111nnnnmmm11011 fmov.d <DX_REG_M>,@-<REG_N>*/{"fmov.d",{DX_REG_M,A_DEC_N},{HEX_F,REG_N,REG_M,HEX_B}, arch_sh4_up | arch_sh2a_up},
! 
! /* 1111nnn1mmmm0110 fmov.d @(R0,<REG_M>),<DX_REG_N>*/{"fmov.d",{A_IND_R0_REG_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_6}, arch_sh4_up | arch_sh2a_up},
  
! /* 1111nnnnmmm10111 fmov.d <DX_REG_M>,@(R0,<REG_N>)*/{"fmov.d",{DX_REG_M,A_IND_R0_REG_N},{HEX_F,REG_N,REG_M,HEX_7}, arch_sh4_up | arch_sh2a_up},
  /* 0011nnnnmmmm0001 0011dddddddddddd fmov.d <F_REG_M>,@(<DISP12>,<REG_N>) */
  {"fmov.d",{DX_REG_M,A_DISP_REG_N},{HEX_3,REG_N,REG_M,HEX_1,HEX_3,DISP1_12BY8}, arch_sh2a_up | arch_op32},
  /* 0011nnnnmmmm0001 0111dddddddddddd fmov.d @(<DISP12>,<REG_M>),F_REG_N */
--- 1056,1092 ----
  /* 1111nnnn00011101 flds <F_REG_N>,FPUL*/{"flds",{F_REG_N,FPUL_M},{HEX_F,REG_N,HEX_1,HEX_D}, arch_sh2e_up},
  
  /* 1111nnnn00101101 float FPUL,<F_REG_N>*/{"float",{FPUL_M,F_REG_N},{HEX_F,REG_N,HEX_2,HEX_D}, arch_sh2e_up},
! /* 1111nnn000101101 float FPUL,<D_REG_N>*/{"float",{FPUL_M,D_REG_N},{HEX_F,REG_N,HEX_2,HEX_D}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm1110 fmac FR0,<F_REG_M>,<F_REG_N>*/{"fmac",{F_FR0,F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_E}, arch_sh2e_up},
  
  /* 1111nnnnmmmm1100 fmov <F_REG_M>,<F_REG_N>*/{"fmov",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_C}, arch_sh2e_up},
! /* 1111nnn1mmmm1100 fmov <DX_REG_M>,<DX_REG_N>*/{"fmov",{DX_REG_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_C}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm1000 fmov @<REG_M>,<F_REG_N>*/{"fmov",{A_IND_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_8}, arch_sh2e_up},
! /* 1111nnn1mmmm1000 fmov @<REG_M>,<DX_REG_N>*/{"fmov",{A_IND_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_8}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm1010 fmov <F_REG_M>,@<REG_N>*/{"fmov",{F_REG_M,A_IND_N},{HEX_F,REG_N,REG_M,HEX_A}, arch_sh2e_up},
! /* 1111nnnnmmm11010 fmov <DX_REG_M>,@<REG_N>*/{"fmov",{DX_REG_M,A_IND_N},{HEX_F,REG_N,REG_M,HEX_A}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm1001 fmov @<REG_M>+,<F_REG_N>*/{"fmov",{A_INC_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_9}, arch_sh2e_up},
! /* 1111nnn1mmmm1001 fmov @<REG_M>+,<DX_REG_N>*/{"fmov",{A_INC_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_9}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm1011 fmov <F_REG_M>,@-<REG_N>*/{"fmov",{F_REG_M,A_DEC_N},{HEX_F,REG_N,REG_M,HEX_B}, arch_sh2e_up},
! /* 1111nnnnmmm11011 fmov <DX_REG_M>,@-<REG_N>*/{"fmov",{DX_REG_M,A_DEC_N},{HEX_F,REG_N,REG_M,HEX_B}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm0110 fmov @(R0,<REG_M>),<F_REG_N>*/{"fmov",{A_IND_R0_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_6}, arch_sh2e_up},
! /* 1111nnn1mmmm0110 fmov @(R0,<REG_M>),<DX_REG_N>*/{"fmov",{A_IND_R0_REG_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_6}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnnmmmm0111 fmov <F_REG_M>,@(R0,<REG_N>)*/{"fmov",{F_REG_M,A_IND_R0_REG_N},{HEX_F,REG_N,REG_M,HEX_7}, arch_sh2e_up},
! /* 1111nnnnmmm10111 fmov <DX_REG_M>,@(R0,<REG_N>)*/{"fmov",{DX_REG_M,A_IND_R0_REG_N},{HEX_F,REG_N,REG_M,HEX_7}, arch_sh2a_or_sh4_up},
  
! /* 1111nnn1mmmm1000 fmov.d @<REG_M>,<DX_REG_N>*/{"fmov.d",{A_IND_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_8}, arch_sh2a_or_sh4_up},
! /* 1111nnnnmmm11010 fmov.d <DX_REG_M>,@<REG_N>*/{"fmov.d",{DX_REG_M,A_IND_N},{HEX_F,REG_N,REG_M,HEX_A}, arch_sh2a_or_sh4_up},
! /* 1111nnn1mmmm1001 fmov.d @<REG_M>+,<DX_REG_N>*/{"fmov.d",{A_INC_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_9}, arch_sh2a_or_sh4_up},
! /* 1111nnnnmmm11011 fmov.d <DX_REG_M>,@-<REG_N>*/{"fmov.d",{DX_REG_M,A_DEC_N},{HEX_F,REG_N,REG_M,HEX_B}, arch_sh2a_or_sh4_up},
! /* 1111nnn1mmmm0110 fmov.d @(R0,<REG_M>),<DX_REG_N>*/{"fmov.d",{A_IND_R0_REG_M,DX_REG_N},{HEX_F,REG_N,REG_M,HEX_6}, arch_sh2a_or_sh4_up},
! /* 1111nnnnmmm10111 fmov.d <DX_REG_M>,@(R0,<REG_N>)*/{"fmov.d",{DX_REG_M,A_IND_R0_REG_N},{HEX_F,REG_N,REG_M,HEX_7}, arch_sh2a_or_sh4_up},
  /* 0011nnnnmmmm0001 0011dddddddddddd fmov.d <F_REG_M>,@(<DISP12>,<REG_N>) */
  {"fmov.d",{DX_REG_M,A_DISP_REG_N},{HEX_3,REG_N,REG_M,HEX_1,HEX_3,DISP1_12BY8}, arch_sh2a_up | arch_op32},
  /* 0011nnnnmmmm0001 0111dddddddddddd fmov.d @(<DISP12>,<REG_M>),F_REG_N */
*************** const sh_opcode_info sh_table[] =
*** 1070,1079 ****
  {"fmov.s",{A_DISP_REG_M,F_REG_N},{HEX_3,REG_N,REG_M,HEX_1,HEX_7,DISP0_12BY4}, arch_sh2a_up | arch_op32},
  
  /* 1111nnnnmmmm0010 fmul <F_REG_M>,<F_REG_N>*/{"fmul",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_2}, arch_sh2e_up},
! /* 1111nnn0mmm00010 fmul <D_REG_M>,<D_REG_N>*/{"fmul",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_2}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnn01001101 fneg <F_REG_N>     */{"fneg",{F_REG_N},{HEX_F,REG_N,HEX_4,HEX_D}, arch_sh2e_up},
! /* 1111nnn001001101 fneg <D_REG_N>     */{"fneg",{D_REG_N},{HEX_F,REG_N,HEX_4,HEX_D}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111011111111101 fpchg               */{"fpchg",{0},{HEX_F,HEX_7,HEX_F,HEX_D}, arch_sh4a_up},
  
--- 1109,1118 ----
  {"fmov.s",{A_DISP_REG_M,F_REG_N},{HEX_3,REG_N,REG_M,HEX_1,HEX_7,DISP0_12BY4}, arch_sh2a_up | arch_op32},
  
  /* 1111nnnnmmmm0010 fmul <F_REG_M>,<F_REG_N>*/{"fmul",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_2}, arch_sh2e_up},
! /* 1111nnn0mmm00010 fmul <D_REG_M>,<D_REG_N>*/{"fmul",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_2}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnn01001101 fneg <F_REG_N>     */{"fneg",{F_REG_N},{HEX_F,REG_N,HEX_4,HEX_D}, arch_sh2e_up},
! /* 1111nnn001001101 fneg <D_REG_N>     */{"fneg",{D_REG_N},{HEX_F,REG_N,HEX_4,HEX_D}, arch_sh2a_or_sh4_up},
  
  /* 1111011111111101 fpchg               */{"fpchg",{0},{HEX_F,HEX_7,HEX_F,HEX_D}, arch_sh4a_up},
  
*************** const sh_opcode_info sh_table[] =
*** 1081,1100 ****
  
  /* 1111nnn011111101 fsca FPUL,<D_REG_N> */{"fsca",{FPUL_M,D_REG_N},{HEX_F,REG_N_D,HEX_F,HEX_D}, arch_sh4_up},
  
! /* 1111001111111101 fschg               */{"fschg",{0},{HEX_F,HEX_3,HEX_F,HEX_D}, arch_sh4_up | arch_sh2a_up},
  
! /* 1111nnnn01101101 fsqrt <F_REG_N>    */{"fsqrt",{F_REG_N},{HEX_F,REG_N,HEX_6,HEX_D}, arch_sh3e_up | arch_sh2a_up},
! /* 1111nnn001101101 fsqrt <D_REG_N>    */{"fsqrt",{D_REG_N},{HEX_F,REG_N,HEX_6,HEX_D}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnn01111101 fsrra <F_REG_N>    */{"fsrra",{F_REG_N},{HEX_F,REG_N,HEX_7,HEX_D}, arch_sh4_up},
  
  /* 1111nnnn00001101 fsts FPUL,<F_REG_N>*/{"fsts",{FPUL_M,F_REG_N},{HEX_F,REG_N,HEX_0,HEX_D}, arch_sh2e_up},
  
  /* 1111nnnnmmmm0001 fsub <F_REG_M>,<F_REG_N>*/{"fsub",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_1}, arch_sh2e_up},
! /* 1111nnn0mmm00001 fsub <D_REG_M>,<D_REG_N>*/{"fsub",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_1}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nnnn00111101 ftrc <F_REG_N>,FPUL*/{"ftrc",{F_REG_N,FPUL_M},{HEX_F,REG_N,HEX_3,HEX_D}, arch_sh2e_up},
! /* 1111nnnn00111101 ftrc <D_REG_N>,FPUL*/{"ftrc",{D_REG_N,FPUL_M},{HEX_F,REG_N,HEX_3,HEX_D}, arch_sh4_up | arch_sh2a_up},
  
  /* 1111nn0111111101 ftrv XMTRX_M4,<V_REG_n>*/{"ftrv",{XMTRX_M4,V_REG_N},{HEX_F,REG_N_B01,HEX_F,HEX_D}, arch_sh4_up},
  
--- 1120,1139 ----
  
  /* 1111nnn011111101 fsca FPUL,<D_REG_N> */{"fsca",{FPUL_M,D_REG_N},{HEX_F,REG_N_D,HEX_F,HEX_D}, arch_sh4_up},
  
! /* 1111001111111101 fschg               */{"fschg",{0},{HEX_F,HEX_3,HEX_F,HEX_D}, arch_sh2a_or_sh4_up},
  
! /* 1111nnnn01101101 fsqrt <F_REG_N>    */{"fsqrt",{F_REG_N},{HEX_F,REG_N,HEX_6,HEX_D}, arch_sh2a_or_sh3e_up},
! /* 1111nnn001101101 fsqrt <D_REG_N>    */{"fsqrt",{D_REG_N},{HEX_F,REG_N,HEX_6,HEX_D}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnn01111101 fsrra <F_REG_N>    */{"fsrra",{F_REG_N},{HEX_F,REG_N,HEX_7,HEX_D}, arch_sh4_up},
  
  /* 1111nnnn00001101 fsts FPUL,<F_REG_N>*/{"fsts",{FPUL_M,F_REG_N},{HEX_F,REG_N,HEX_0,HEX_D}, arch_sh2e_up},
  
  /* 1111nnnnmmmm0001 fsub <F_REG_M>,<F_REG_N>*/{"fsub",{F_REG_M,F_REG_N},{HEX_F,REG_N,REG_M,HEX_1}, arch_sh2e_up},
! /* 1111nnn0mmm00001 fsub <D_REG_M>,<D_REG_N>*/{"fsub",{D_REG_M,D_REG_N},{HEX_F,REG_N,REG_M,HEX_1}, arch_sh2a_or_sh4_up},
  
  /* 1111nnnn00111101 ftrc <F_REG_N>,FPUL*/{"ftrc",{F_REG_N,FPUL_M},{HEX_F,REG_N,HEX_3,HEX_D}, arch_sh2e_up},
! /* 1111nnnn00111101 ftrc <D_REG_N>,FPUL*/{"ftrc",{D_REG_N,FPUL_M},{HEX_F,REG_N,HEX_3,HEX_D}, arch_sh2a_or_sh4_up},
  
  /* 1111nn0111111101 ftrv XMTRX_M4,<V_REG_n>*/{"ftrv",{XMTRX_M4,V_REG_N},{HEX_F,REG_N_B01,HEX_F,HEX_D}, arch_sh4_up},
  
Index: bfd/archures.c
===================================================================
RCS file: /cvs/src/src/bfd/archures.c,v
retrieving revision 1.100
diff -c -3 -p -r1.100 archures.c
*** bfd/archures.c	9 Dec 2004 06:08:45 -0000	1.100
--- bfd/archures.c	20 Dec 2004 17:09:48 -0000
*************** DESCRIPTION
*** 235,244 ****
  .#define bfd_mach_sh_dsp     0x2d
  .#define bfd_mach_sh2a       0x2a
  .#define bfd_mach_sh2a_nofpu 0x2b
! .#define bfd_mach_sh2a_fake1 0x2a1
! .#define bfd_mach_sh2a_fake2 0x2a2
! .#define bfd_mach_sh2a_fake3 0x2a3
! .#define bfd_mach_sh2a_fake4 0x2a4
  .#define bfd_mach_sh2e       0x2e
  .#define bfd_mach_sh3        0x30
  .#define bfd_mach_sh3_nommu  0x31
--- 235,244 ----
  .#define bfd_mach_sh_dsp     0x2d
  .#define bfd_mach_sh2a       0x2a
  .#define bfd_mach_sh2a_nofpu 0x2b
! .#define bfd_mach_sh2a_nofpu_or_sh4_nommu_nofpu 0x2a1
! .#define bfd_mach_sh2a_nofpu_or_sh3_nommu 0x2a2
! .#define bfd_mach_sh2a_or_sh4 0x2a3
! .#define bfd_mach_sh2a_or_sh3e 0x2a4
  .#define bfd_mach_sh2e       0x2e
  .#define bfd_mach_sh3        0x30
  .#define bfd_mach_sh3_nommu  0x31
Index: bfd/cpu-sh.c
===================================================================
RCS file: /cvs/src/src/bfd/cpu-sh.c,v
retrieving revision 1.17
diff -c -3 -p -r1.17 cpu-sh.c
*** bfd/cpu-sh.c	13 Aug 2004 03:15:56 -0000	1.17
--- bfd/cpu-sh.c	20 Dec 2004 17:09:49 -0000
***************
*** 24,46 ****
  #include "libbfd.h"
  #include "../opcodes/sh-opc.h"
  
! #define SH_NEXT      &arch_info_struct[0]
! #define SH2_NEXT     &arch_info_struct[1]
! #define SH2E_NEXT    &arch_info_struct[2]
! #define SH_DSP_NEXT  &arch_info_struct[3]
! #define SH3_NEXT     &arch_info_struct[4]
! #define SH3_NOMMU_NEXT &arch_info_struct[5]
! #define SH3_DSP_NEXT &arch_info_struct[6]
! #define SH3E_NEXT    &arch_info_struct[7]
! #define SH4_NEXT     &arch_info_struct[8]
! #define SH4A_NEXT    &arch_info_struct[9]
! #define SH4AL_DSP_NEXT &arch_info_struct[10]
! #define SH4_NOFPU_NEXT &arch_info_struct[11]
! #define SH4_NOMMU_NOFPU_NEXT &arch_info_struct[12]
! #define SH4A_NOFPU_NEXT &arch_info_struct[13]
! #define SH2A_NEXT       &arch_info_struct[14]
! #define SH2A_NOFPU_NEXT &arch_info_struct[15]
! #define SH64_NEXT    NULL
  
  static const bfd_arch_info_type arch_info_struct[] =
  {
--- 24,50 ----
  #include "libbfd.h"
  #include "../opcodes/sh-opc.h"
  
! #define SH_NEXT                            arch_info_struct + 0
! #define SH2_NEXT                           arch_info_struct + 1
! #define SH2E_NEXT                          arch_info_struct + 2
! #define SH_DSP_NEXT                        arch_info_struct + 3
! #define SH3_NEXT                           arch_info_struct + 4
! #define SH3_NOMMU_NEXT                     arch_info_struct + 5
! #define SH3_DSP_NEXT                       arch_info_struct + 6
! #define SH3E_NEXT                          arch_info_struct + 7
! #define SH4_NEXT                           arch_info_struct + 8
! #define SH4A_NEXT                          arch_info_struct + 9
! #define SH4AL_DSP_NEXT                     arch_info_struct + 10
! #define SH4_NOFPU_NEXT                     arch_info_struct + 11
! #define SH4_NOMMU_NOFPU_NEXT               arch_info_struct + 12
! #define SH4A_NOFPU_NEXT                    arch_info_struct + 13
! #define SH2A_NEXT                          arch_info_struct + 14
! #define SH2A_NOFPU_NEXT                    arch_info_struct + 15
! #define SH2A_NOFPU_OR_SH4_NOMMU_NOFPU_NEXT arch_info_struct + 16
! #define SH2A_NOFPU_OR_SH3_NOMMU_NEXT       arch_info_struct + 17
! #define SH2A_OR_SH4_NEXT                   arch_info_struct + 18
! #define SH2A_OR_SH3E_NEXT                  arch_info_struct + 19
! #define SH64_NEXT                          NULL
  
  static const bfd_arch_info_type arch_info_struct[] =
  {
*************** static const bfd_arch_info_type arch_inf
*** 255,260 ****
--- 259,320 ----
      SH2A_NOFPU_NEXT
    },
    {
+     32,				/* 32 bits in a word.  */
+     32,				/* 32 bits in an address.  */
+     8,				/* 8 bits in a byte.  */
+     bfd_arch_sh,
+     bfd_mach_sh2a_nofpu_or_sh4_nommu_nofpu,
+     "sh",			/* Arch_name.  */
+     "sh2a-nofpu-or-sh4-nommu-nofpu",		/* Printable name.  */
+     1,
+     FALSE,			/* Not the default.  */
+     bfd_default_compatible,
+     bfd_default_scan,
+     SH2A_NOFPU_OR_SH4_NOMMU_NOFPU_NEXT
+   },
+   {
+     32,				/* 32 bits in a word.  */
+     32,				/* 32 bits in an address.  */
+     8,				/* 8 bits in a byte.  */
+     bfd_arch_sh,
+     bfd_mach_sh2a_nofpu_or_sh3_nommu,
+     "sh",			/* Arch_name.  */
+     "sh2a-nofpu-or-sh3-nommu",	/* Printable name.  */
+     1,
+     FALSE,			/* Not the default.  */
+     bfd_default_compatible,
+     bfd_default_scan,
+     SH2A_NOFPU_OR_SH3_NOMMU_NEXT
+   },
+   {
+     32,				/* 32 bits in a word.  */
+     32,				/* 32 bits in an address.  */
+     8,				/* 8 bits in a byte.  */
+     bfd_arch_sh,
+     bfd_mach_sh2a_or_sh4,
+     "sh",			/* Arch_name.  */
+     "sh2a-or-sh4",		/* Printable name.  */
+     1,
+     FALSE,			/* Not the default.  */
+     bfd_default_compatible,
+     bfd_default_scan,
+     SH2A_OR_SH4_NEXT
+   },
+   {
+     32,				/* 32 bits in a word.  */
+     32,				/* 32 bits in an address.  */
+     8,				/* 8 bits in a byte.  */
+     bfd_arch_sh,
+     bfd_mach_sh2a_or_sh3e,
+     "sh",			/* Arch_name.  */
+     "sh2a-or-sh3e",		/* Printable name.  */
+     1,
+     FALSE,			/* Not the default.  */
+     bfd_default_compatible,
+     bfd_default_scan,
+     SH2A_OR_SH3E_NEXT
+   },
+   {
      64,				/* 64 bits in a word */
      64,				/* 64 bits in an address */
      8,				/* 8 bits in a byte */
*************** static struct { unsigned long bfd_mach, 
*** 301,306 ****
--- 361,372 ----
    { bfd_mach_sh_dsp,          arch_sh_dsp,          arch_sh_dsp_up },
    { bfd_mach_sh2a,            arch_sh2a,            arch_sh2a_up },
    { bfd_mach_sh2a_nofpu,      arch_sh2a_nofpu,      arch_sh2a_nofpu_up },
+ 
+   { bfd_mach_sh2a_nofpu_or_sh4_nommu_nofpu,         arch_sh2a_nofpu_or_sh4_nommu_nofpu,   arch_sh2a_nofpu_or_sh4_nommu_nofpu_up },
+   { bfd_mach_sh2a_nofpu_or_sh3_nommu,               arch_sh2a_nofpu_or_sh3_nommu,         arch_sh2a_nofpu_or_sh3_nommu_up },
+   { bfd_mach_sh2a_or_sh4,     arch_sh2a_or_sh4,     arch_sh2a_or_sh4_up },
+   { bfd_mach_sh2a_or_sh3e,    arch_sh2a_or_sh3e,    arch_sh2a_or_sh3e_up },
+   
    { bfd_mach_sh3,             arch_sh3,             arch_sh3_up },
    { bfd_mach_sh3_nommu,       arch_sh3_nommu,       arch_sh3_nommu_up },
    { bfd_mach_sh3_dsp,         arch_sh3_dsp,         arch_sh3_dsp_up },
Index: include/elf/sh.h
===================================================================
RCS file: /cvs/src/src/include/elf/sh.h,v
retrieving revision 1.19
diff -c -3 -p -r1.19 sh.h
*** include/elf/sh.h	29 Jul 2004 05:17:37 -0000	1.19
--- include/elf/sh.h	20 Dec 2004 17:09:51 -0000
***************
*** 42,47 ****
--- 42,52 ----
  #define EF_SH2A_NOFPU      19
  #define EF_SH3_NOMMU       20
  
+ #define EF_SH2A_SH4_NOFPU  21
+ #define EF_SH2A_SH3_NOFPU  22
+ #define EF_SH2A_SH4        23
+ #define EF_SH2A_SH3E       24
+ 
  /* This one can only mix in objects from other EF_SH5 objects.  */
  #define EF_SH5		  10
  
***************
*** 68,74 ****
  /* EF_SH4A_NOFPU	*/ bfd_mach_sh4a_nofpu	, \
  /* EF_SH4_NOMMU_NOFPU	*/ bfd_mach_sh4_nommu_nofpu, \
  /* EF_SH2A_NOFPU	*/ bfd_mach_sh2a_nofpu  , \
! /* EF_SH3_NOMMU		*/ bfd_mach_sh3_nommu
  
  /* Convert arch_sh* into EF_SH*.  */
  int sh_find_elf_flags (unsigned int arch_set);
--- 73,83 ----
  /* EF_SH4A_NOFPU	*/ bfd_mach_sh4a_nofpu	, \
  /* EF_SH4_NOMMU_NOFPU	*/ bfd_mach_sh4_nommu_nofpu, \
  /* EF_SH2A_NOFPU	*/ bfd_mach_sh2a_nofpu  , \
! /* EF_SH3_NOMMU		*/ bfd_mach_sh3_nommu   , \
! /* EF_SH2A_SH4_NOFPU    */ bfd_mach_sh2a_nofpu_or_sh4_nommu_nofpu, \
! /* EF_SH2A_SH3_NOFPU    */ bfd_mach_sh2a_nofpu_or_sh3_nommu, \
! /* EF_SH2A_SH4          */ bfd_mach_sh2a_or_sh4 , \
! /* EF_SH2A_SH3E         */ bfd_mach_sh2a_or_sh3e
  
  /* Convert arch_sh* into EF_SH*.  */
  int sh_find_elf_flags (unsigned int arch_set);
Index: gas/testsuite/gas/sh/arch/arch_expected.txt
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/sh/arch/arch_expected.txt,v
retrieving revision 1.1
diff -c -3 -p -r1.1 arch_expected.txt
*** gas/testsuite/gas/sh/arch/arch_expected.txt	29 Jun 2004 16:35:05 -0000	1.1
--- gas/testsuite/gas/sh/arch/arch_expected.txt	20 Dec 2004 17:09:55 -0000
*************** sh-dsp.s             -isa=sh            
*** 21,26 ****
--- 21,34 ----
  sh-dsp.s             -isa=sh-up                sh-dsp
  sh-dsp.s             -isa=sh2                  ERROR
  sh-dsp.s             -isa=sh2-up               sh-dsp
+ sh-dsp.s             -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh-dsp.s             -isa=sh2a-nofpu-or-sh3-nommu-up sh3-dsp
+ sh-dsp.s             -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh-dsp.s             -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh4al-dsp
+ sh-dsp.s             -isa=sh2a-or-sh3e         ERROR
+ sh-dsp.s             -isa=sh2a-or-sh3e-up      ERROR
+ sh-dsp.s             -isa=sh2a-or-sh4          ERROR
+ sh-dsp.s             -isa=sh2a-or-sh4-up       ERROR
  sh-dsp.s             -isa=sh2e                 ERROR
  sh-dsp.s             -isa=sh2e-up              ERROR
  sh-dsp.s             -isa=sh3-dsp              sh3-dsp
*************** sh.s                 -isa=sh            
*** 54,59 ****
--- 62,75 ----
  sh.s                 -isa=sh-up                sh
  sh.s                 -isa=sh2                  sh2
  sh.s                 -isa=sh2-up               sh2
+ sh.s                 -isa=sh2a-nofpu-or-sh3-nommu sh2a-nofpu-or-sh4-nommu-nofpu
+ sh.s                 -isa=sh2a-nofpu-or-sh3-nommu-up sh2a-nofpu-or-sh3-nommu
+ sh.s                 -isa=sh2a-nofpu-or-sh4-nommu-nofpu sh2a-nofpu-or-sh4-nommu-nofpu
+ sh.s                 -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh2a-nofpu-or-sh4-nommu-nofpu
+ sh.s                 -isa=sh2a-or-sh3e         ERROR
+ sh.s                 -isa=sh2a-or-sh3e-up      sh2a-or-sh3e
+ sh.s                 -isa=sh2a-or-sh4          ERROR
+ sh.s                 -isa=sh2a-or-sh4-up       sh2a-or-sh4
  sh.s                 -isa=sh2e                 sh2e
  sh.s                 -isa=sh2e-up              sh2e
  sh.s                 -isa=sh3-dsp              sh3-dsp
*************** sh2.s                -isa=sh            
*** 87,92 ****
--- 103,116 ----
  sh2.s                -isa=sh-up                sh2
  sh2.s                -isa=sh2                  sh2
  sh2.s                -isa=sh2-up               sh2
+ sh2.s                -isa=sh2a-nofpu-or-sh3-nommu sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2.s                -isa=sh2a-nofpu-or-sh3-nommu-up sh2a-nofpu-or-sh3-nommu
+ sh2.s                -isa=sh2a-nofpu-or-sh4-nommu-nofpu sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2.s                -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2.s                -isa=sh2a-or-sh3e         ERROR
+ sh2.s                -isa=sh2a-or-sh3e-up      sh2a-or-sh3e
+ sh2.s                -isa=sh2a-or-sh4          ERROR
+ sh2.s                -isa=sh2a-or-sh4-up       sh2a-or-sh4
  sh2.s                -isa=sh2e                 sh2e
  sh2.s                -isa=sh2e-up              sh2e
  sh2.s                -isa=sh3-dsp              sh3-dsp
*************** sh2.s                -isa=sh4a          
*** 109,114 ****
--- 133,302 ----
  sh2.s                -isa=sh4a-up              sh4a
  sh2.s                -isa=sh4al-dsp            sh4al-dsp
  sh2.s                -isa=sh4al-dsp-up         sh4al-dsp
+ sh2a-nofpu-or-sh3-nommu.s default-options           sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.s -dsp                      sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.s -isa=any                  sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.s -isa=dsp                  sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.s -isa=fp                   sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh-dsp               ERROR
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh-dsp-up            sh3-dsp
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh                   ERROR
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh-up                sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2                  ERROR
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2-up               sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2a-nofpu-or-sh3-nommu sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2a-nofpu-or-sh3-nommu-up sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2a-nofpu-or-sh4-nommu-nofpu sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2a-or-sh3e         ERROR
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2a-or-sh3e-up      sh2a-or-sh3e
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2a-or-sh4          ERROR
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2a-or-sh4-up       sh2a-or-sh4
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2e                 ERROR
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh2e-up              sh2a-or-sh3e
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh3-dsp              sh3-dsp
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh3-dsp-up           sh3-dsp
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh3-nommu            sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh3-nommu-up         sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh3                  sh3
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh3-up               sh3
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh3e                 sh3e
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh3e-up              sh3e
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4-nofpu            sh4-nofpu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4-nofpu-up         sh4-nofpu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4-nommu-nofpu      sh4-nommu-nofpu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4-nommu-nofpu-up   sh4-nommu-nofpu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4                  sh4
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4-up               sh4
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4a-nofpu           sh4a-nofpu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4a-nofpu-up        sh4a-nofpu
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4a                 sh4a
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4a-up              sh4a
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4al-dsp            sh4al-dsp
+ sh2a-nofpu-or-sh3-nommu.s -isa=sh4al-dsp-up         sh4al-dsp
+ sh2a-nofpu-or-sh4-nommu-nofpu.s default-options           sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -dsp                      sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=any                  sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=dsp                  sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=fp                   sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh-dsp               ERROR
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh-dsp-up            sh4al-dsp
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh                   ERROR
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh-up                sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2                  ERROR
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2-up               sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2a-nofpu-or-sh3-nommu sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2a-nofpu-or-sh3-nommu-up sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2a-nofpu-or-sh4-nommu-nofpu sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2a-or-sh3e         ERROR
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2a-or-sh3e-up      sh2a-or-sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2a-or-sh4          ERROR
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2a-or-sh4-up       sh2a-or-sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2e                 ERROR
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh2e-up              sh2a-or-sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh3-dsp              ERROR
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh3-dsp-up           sh4al-dsp
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh3-nommu            ERROR
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh3-nommu-up         sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh3                  ERROR
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh3-up               sh4-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh3e                 ERROR
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh3e-up              sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4-nofpu            sh4-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4-nofpu-up         sh4-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4-nommu-nofpu      sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4-nommu-nofpu-up   sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4                  sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4-up               sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4a-nofpu           sh4a-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4a-nofpu-up        sh4a-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4a                 sh4a
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4a-up              sh4a
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4al-dsp            sh4al-dsp
+ sh2a-nofpu-or-sh4-nommu-nofpu.s -isa=sh4al-dsp-up         sh4al-dsp
+ sh2a-or-sh3e.s       default-options           sh2a-or-sh3e
+ sh2a-or-sh3e.s       -dsp                      ERROR
+ sh2a-or-sh3e.s       -isa=any                  sh2a-or-sh3e
+ sh2a-or-sh3e.s       -isa=dsp                  ERROR
+ sh2a-or-sh3e.s       -isa=fp                   sh2a-or-sh3e
+ sh2a-or-sh3e.s       -isa=sh-dsp               ERROR
+ sh2a-or-sh3e.s       -isa=sh-dsp-up            ERROR
+ sh2a-or-sh3e.s       -isa=sh                   ERROR
+ sh2a-or-sh3e.s       -isa=sh-up                sh2a-or-sh3e
+ sh2a-or-sh3e.s       -isa=sh2                  ERROR
+ sh2a-or-sh3e.s       -isa=sh2-up               sh2a-or-sh3e
+ sh2a-or-sh3e.s       -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh2a-or-sh3e.s       -isa=sh2a-nofpu-or-sh3-nommu-up sh2a-or-sh3e
+ sh2a-or-sh3e.s       -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh2a-or-sh3e.s       -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh2a-or-sh4
+ sh2a-or-sh3e.s       -isa=sh2a-or-sh3e         ERROR
+ sh2a-or-sh3e.s       -isa=sh2a-or-sh3e-up      sh2a-or-sh3e
+ sh2a-or-sh3e.s       -isa=sh2a-or-sh4          ERROR
+ sh2a-or-sh3e.s       -isa=sh2a-or-sh4-up       sh2a-or-sh4
+ sh2a-or-sh3e.s       -isa=sh2e                 ERROR
+ sh2a-or-sh3e.s       -isa=sh2e-up              sh2a-or-sh3e
+ sh2a-or-sh3e.s       -isa=sh3-dsp              ERROR
+ sh2a-or-sh3e.s       -isa=sh3-dsp-up           ERROR
+ sh2a-or-sh3e.s       -isa=sh3-nommu            ERROR
+ sh2a-or-sh3e.s       -isa=sh3-nommu-up         sh3e
+ sh2a-or-sh3e.s       -isa=sh3                  ERROR
+ sh2a-or-sh3e.s       -isa=sh3-up               sh3e
+ sh2a-or-sh3e.s       -isa=sh3e                 sh3e
+ sh2a-or-sh3e.s       -isa=sh3e-up              sh3e
+ sh2a-or-sh3e.s       -isa=sh4-nofpu            ERROR
+ sh2a-or-sh3e.s       -isa=sh4-nofpu-up         sh4
+ sh2a-or-sh3e.s       -isa=sh4-nommu-nofpu      ERROR
+ sh2a-or-sh3e.s       -isa=sh4-nommu-nofpu-up   sh4
+ sh2a-or-sh3e.s       -isa=sh4                  sh4
+ sh2a-or-sh3e.s       -isa=sh4-up               sh4
+ sh2a-or-sh3e.s       -isa=sh4a-nofpu           ERROR
+ sh2a-or-sh3e.s       -isa=sh4a-nofpu-up        sh4a
+ sh2a-or-sh3e.s       -isa=sh4a                 sh4a
+ sh2a-or-sh3e.s       -isa=sh4a-up              sh4a
+ sh2a-or-sh3e.s       -isa=sh4al-dsp            ERROR
+ sh2a-or-sh3e.s       -isa=sh4al-dsp-up         ERROR
+ sh2a-or-sh4.s        default-options           sh2a-or-sh4
+ sh2a-or-sh4.s        -dsp                      ERROR
+ sh2a-or-sh4.s        -isa=any                  sh2a-or-sh4
+ sh2a-or-sh4.s        -isa=dsp                  ERROR
+ sh2a-or-sh4.s        -isa=fp                   sh2a-or-sh4
+ sh2a-or-sh4.s        -isa=sh-dsp               ERROR
+ sh2a-or-sh4.s        -isa=sh-dsp-up            ERROR
+ sh2a-or-sh4.s        -isa=sh                   ERROR
+ sh2a-or-sh4.s        -isa=sh-up                sh2a-or-sh4
+ sh2a-or-sh4.s        -isa=sh2                  ERROR
+ sh2a-or-sh4.s        -isa=sh2-up               sh2a-or-sh4
+ sh2a-or-sh4.s        -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh2a-or-sh4.s        -isa=sh2a-nofpu-or-sh3-nommu-up sh2a-or-sh4
+ sh2a-or-sh4.s        -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh2a-or-sh4.s        -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh2a-or-sh4
+ sh2a-or-sh4.s        -isa=sh2a-or-sh3e         ERROR
+ sh2a-or-sh4.s        -isa=sh2a-or-sh3e-up      sh2a-or-sh4
+ sh2a-or-sh4.s        -isa=sh2a-or-sh4          ERROR
+ sh2a-or-sh4.s        -isa=sh2a-or-sh4-up       sh2a-or-sh4
+ sh2a-or-sh4.s        -isa=sh2e                 ERROR
+ sh2a-or-sh4.s        -isa=sh2e-up              sh2a-or-sh4
+ sh2a-or-sh4.s        -isa=sh3-dsp              ERROR
+ sh2a-or-sh4.s        -isa=sh3-dsp-up           ERROR
+ sh2a-or-sh4.s        -isa=sh3-nommu            ERROR
+ sh2a-or-sh4.s        -isa=sh3-nommu-up         sh4
+ sh2a-or-sh4.s        -isa=sh3                  ERROR
+ sh2a-or-sh4.s        -isa=sh3-up               sh4
+ sh2a-or-sh4.s        -isa=sh3e                 ERROR
+ sh2a-or-sh4.s        -isa=sh3e-up              sh4
+ sh2a-or-sh4.s        -isa=sh4-nofpu            ERROR
+ sh2a-or-sh4.s        -isa=sh4-nofpu-up         sh4
+ sh2a-or-sh4.s        -isa=sh4-nommu-nofpu      ERROR
+ sh2a-or-sh4.s        -isa=sh4-nommu-nofpu-up   sh4
+ sh2a-or-sh4.s        -isa=sh4                  sh4
+ sh2a-or-sh4.s        -isa=sh4-up               sh4
+ sh2a-or-sh4.s        -isa=sh4a-nofpu           ERROR
+ sh2a-or-sh4.s        -isa=sh4a-nofpu-up        sh4a
+ sh2a-or-sh4.s        -isa=sh4a                 sh4a
+ sh2a-or-sh4.s        -isa=sh4a-up              sh4a
+ sh2a-or-sh4.s        -isa=sh4al-dsp            ERROR
+ sh2a-or-sh4.s        -isa=sh4al-dsp-up         ERROR
  sh2e.s               default-options           sh2e
  sh2e.s               -dsp                      ERROR
  sh2e.s               -isa=any                  sh2e
*************** sh2e.s               -isa=sh            
*** 120,125 ****
--- 308,321 ----
  sh2e.s               -isa=sh-up                sh2e
  sh2e.s               -isa=sh2                  ERROR
  sh2e.s               -isa=sh2-up               sh2e
+ sh2e.s               -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh2e.s               -isa=sh2a-nofpu-or-sh3-nommu-up sh2a-or-sh3e
+ sh2e.s               -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh2e.s               -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh2a-or-sh4
+ sh2e.s               -isa=sh2a-or-sh3e         ERROR
+ sh2e.s               -isa=sh2a-or-sh3e-up      sh2a-or-sh3e
+ sh2e.s               -isa=sh2a-or-sh4          ERROR
+ sh2e.s               -isa=sh2a-or-sh4-up       sh2a-or-sh4
  sh2e.s               -isa=sh2e                 sh2e
  sh2e.s               -isa=sh2e-up              sh2e
  sh2e.s               -isa=sh3-dsp              ERROR
*************** sh3-dsp.s            -isa=sh            
*** 153,158 ****
--- 349,362 ----
  sh3-dsp.s            -isa=sh-up                sh3-dsp
  sh3-dsp.s            -isa=sh2                  ERROR
  sh3-dsp.s            -isa=sh2-up               sh3-dsp
+ sh3-dsp.s            -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh3-dsp.s            -isa=sh2a-nofpu-or-sh3-nommu-up sh3-dsp
+ sh3-dsp.s            -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh3-dsp.s            -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh4al-dsp
+ sh3-dsp.s            -isa=sh2a-or-sh3e         ERROR
+ sh3-dsp.s            -isa=sh2a-or-sh3e-up      ERROR
+ sh3-dsp.s            -isa=sh2a-or-sh4          ERROR
+ sh3-dsp.s            -isa=sh2a-or-sh4-up       ERROR
  sh3-dsp.s            -isa=sh2e                 ERROR
  sh3-dsp.s            -isa=sh2e-up              ERROR
  sh3-dsp.s            -isa=sh3-dsp              sh3-dsp
*************** sh3-nommu.s          -isa=sh            
*** 186,191 ****
--- 390,403 ----
  sh3-nommu.s          -isa=sh-up                sh3-nommu
  sh3-nommu.s          -isa=sh2                  ERROR
  sh3-nommu.s          -isa=sh2-up               sh3-nommu
+ sh3-nommu.s          -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh3-nommu.s          -isa=sh2a-nofpu-or-sh3-nommu-up sh3-nommu
+ sh3-nommu.s          -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh3-nommu.s          -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh4-nommu-nofpu
+ sh3-nommu.s          -isa=sh2a-or-sh3e         ERROR
+ sh3-nommu.s          -isa=sh2a-or-sh3e-up      sh3e
+ sh3-nommu.s          -isa=sh2a-or-sh4          ERROR
+ sh3-nommu.s          -isa=sh2a-or-sh4-up       sh4
  sh3-nommu.s          -isa=sh2e                 ERROR
  sh3-nommu.s          -isa=sh2e-up              sh3e
  sh3-nommu.s          -isa=sh3-dsp              sh3-dsp
*************** sh3.s                -isa=sh            
*** 219,224 ****
--- 431,444 ----
  sh3.s                -isa=sh-up                sh3
  sh3.s                -isa=sh2                  ERROR
  sh3.s                -isa=sh2-up               sh3
+ sh3.s                -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh3.s                -isa=sh2a-nofpu-or-sh3-nommu-up sh3
+ sh3.s                -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh3.s                -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh4-nofpu
+ sh3.s                -isa=sh2a-or-sh3e         ERROR
+ sh3.s                -isa=sh2a-or-sh3e-up      sh3e
+ sh3.s                -isa=sh2a-or-sh4          ERROR
+ sh3.s                -isa=sh2a-or-sh4-up       sh4
  sh3.s                -isa=sh2e                 ERROR
  sh3.s                -isa=sh2e-up              sh3e
  sh3.s                -isa=sh3-dsp              sh3-dsp
*************** sh3.s                -isa=sh4a          
*** 241,259 ****
  sh3.s                -isa=sh4a-up              sh4a
  sh3.s                -isa=sh4al-dsp            sh4al-dsp
  sh3.s                -isa=sh4al-dsp-up         sh4al-dsp
! sh3e.s               default-options           sh3e
  sh3e.s               -dsp                      ERROR
! sh3e.s               -isa=any                  sh3e
  sh3e.s               -isa=dsp                  ERROR
! sh3e.s               -isa=fp                   sh3e
  sh3e.s               -isa=sh-dsp               ERROR
  sh3e.s               -isa=sh-dsp-up            ERROR
  sh3e.s               -isa=sh                   ERROR
! sh3e.s               -isa=sh-up                sh3e
  sh3e.s               -isa=sh2                  ERROR
! sh3e.s               -isa=sh2-up               sh3e
  sh3e.s               -isa=sh2e                 ERROR
! sh3e.s               -isa=sh2e-up              sh3e
  sh3e.s               -isa=sh3-dsp              ERROR
  sh3e.s               -isa=sh3-dsp-up           ERROR
  sh3e.s               -isa=sh3-nommu            ERROR
--- 461,487 ----
  sh3.s                -isa=sh4a-up              sh4a
  sh3.s                -isa=sh4al-dsp            sh4al-dsp
  sh3.s                -isa=sh4al-dsp-up         sh4al-dsp
! sh3e.s               default-options           sh2a-or-sh3e
  sh3e.s               -dsp                      ERROR
! sh3e.s               -isa=any                  sh2a-or-sh3e
  sh3e.s               -isa=dsp                  ERROR
! sh3e.s               -isa=fp                   sh2a-or-sh3e
  sh3e.s               -isa=sh-dsp               ERROR
  sh3e.s               -isa=sh-dsp-up            ERROR
  sh3e.s               -isa=sh                   ERROR
! sh3e.s               -isa=sh-up                sh2a-or-sh3e
  sh3e.s               -isa=sh2                  ERROR
! sh3e.s               -isa=sh2-up               sh2a-or-sh3e
! sh3e.s               -isa=sh2a-nofpu-or-sh3-nommu ERROR
! sh3e.s               -isa=sh2a-nofpu-or-sh3-nommu-up sh2a-or-sh3e
! sh3e.s               -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
! sh3e.s               -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh2a-or-sh4
! sh3e.s               -isa=sh2a-or-sh3e         ERROR
! sh3e.s               -isa=sh2a-or-sh3e-up      sh2a-or-sh3e
! sh3e.s               -isa=sh2a-or-sh4          ERROR
! sh3e.s               -isa=sh2a-or-sh4-up       sh2a-or-sh4
  sh3e.s               -isa=sh2e                 ERROR
! sh3e.s               -isa=sh2e-up              sh2a-or-sh3e
  sh3e.s               -isa=sh3-dsp              ERROR
  sh3e.s               -isa=sh3-dsp-up           ERROR
  sh3e.s               -isa=sh3-nommu            ERROR
*************** sh4-nofpu.s          -isa=sh            
*** 285,290 ****
--- 513,526 ----
  sh4-nofpu.s          -isa=sh-up                sh4-nofpu
  sh4-nofpu.s          -isa=sh2                  ERROR
  sh4-nofpu.s          -isa=sh2-up               sh4-nofpu
+ sh4-nofpu.s          -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh4-nofpu.s          -isa=sh2a-nofpu-or-sh3-nommu-up sh4-nofpu
+ sh4-nofpu.s          -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh4-nofpu.s          -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh4-nofpu
+ sh4-nofpu.s          -isa=sh2a-or-sh3e         ERROR
+ sh4-nofpu.s          -isa=sh2a-or-sh3e-up      sh4
+ sh4-nofpu.s          -isa=sh2a-or-sh4          ERROR
+ sh4-nofpu.s          -isa=sh2a-or-sh4-up       sh4
  sh4-nofpu.s          -isa=sh2e                 ERROR
  sh4-nofpu.s          -isa=sh2e-up              sh4
  sh4-nofpu.s          -isa=sh3-dsp              ERROR
*************** sh4-nommu-nofpu.s    -isa=sh            
*** 318,323 ****
--- 554,567 ----
  sh4-nommu-nofpu.s    -isa=sh-up                sh4-nommu-nofpu
  sh4-nommu-nofpu.s    -isa=sh2                  ERROR
  sh4-nommu-nofpu.s    -isa=sh2-up               sh4-nommu-nofpu
+ sh4-nommu-nofpu.s    -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh4-nommu-nofpu.s    -isa=sh2a-nofpu-or-sh3-nommu-up sh4-nommu-nofpu
+ sh4-nommu-nofpu.s    -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh4-nommu-nofpu.s    -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh4-nommu-nofpu
+ sh4-nommu-nofpu.s    -isa=sh2a-or-sh3e         ERROR
+ sh4-nommu-nofpu.s    -isa=sh2a-or-sh3e-up      sh4
+ sh4-nommu-nofpu.s    -isa=sh2a-or-sh4          ERROR
+ sh4-nommu-nofpu.s    -isa=sh2a-or-sh4-up       sh4
  sh4-nommu-nofpu.s    -isa=sh2e                 ERROR
  sh4-nommu-nofpu.s    -isa=sh2e-up              sh4
  sh4-nommu-nofpu.s    -isa=sh3-dsp              ERROR
*************** sh4.s                -isa=sh            
*** 351,356 ****
--- 595,608 ----
  sh4.s                -isa=sh-up                sh4
  sh4.s                -isa=sh2                  ERROR
  sh4.s                -isa=sh2-up               sh4
+ sh4.s                -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh4.s                -isa=sh2a-nofpu-or-sh3-nommu-up sh4
+ sh4.s                -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh4.s                -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh4
+ sh4.s                -isa=sh2a-or-sh3e         ERROR
+ sh4.s                -isa=sh2a-or-sh3e-up      sh4
+ sh4.s                -isa=sh2a-or-sh4          ERROR
+ sh4.s                -isa=sh2a-or-sh4-up       sh4
  sh4.s                -isa=sh2e                 ERROR
  sh4.s                -isa=sh2e-up              sh4
  sh4.s                -isa=sh3-dsp              ERROR
*************** sh4a-nofpu.s         -isa=sh            
*** 384,389 ****
--- 636,649 ----
  sh4a-nofpu.s         -isa=sh-up                sh4a-nofpu
  sh4a-nofpu.s         -isa=sh2                  ERROR
  sh4a-nofpu.s         -isa=sh2-up               sh4a-nofpu
+ sh4a-nofpu.s         -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh4a-nofpu.s         -isa=sh2a-nofpu-or-sh3-nommu-up sh4a-nofpu
+ sh4a-nofpu.s         -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh4a-nofpu.s         -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh4a-nofpu
+ sh4a-nofpu.s         -isa=sh2a-or-sh3e         ERROR
+ sh4a-nofpu.s         -isa=sh2a-or-sh3e-up      sh4a
+ sh4a-nofpu.s         -isa=sh2a-or-sh4          ERROR
+ sh4a-nofpu.s         -isa=sh2a-or-sh4-up       sh4a
  sh4a-nofpu.s         -isa=sh2e                 ERROR
  sh4a-nofpu.s         -isa=sh2e-up              sh4a
  sh4a-nofpu.s         -isa=sh3-dsp              ERROR
*************** sh4a.s               -isa=sh            
*** 417,422 ****
--- 677,690 ----
  sh4a.s               -isa=sh-up                sh4a
  sh4a.s               -isa=sh2                  ERROR
  sh4a.s               -isa=sh2-up               sh4a
+ sh4a.s               -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh4a.s               -isa=sh2a-nofpu-or-sh3-nommu-up sh4a
+ sh4a.s               -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh4a.s               -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh4a
+ sh4a.s               -isa=sh2a-or-sh3e         ERROR
+ sh4a.s               -isa=sh2a-or-sh3e-up      sh4a
+ sh4a.s               -isa=sh2a-or-sh4          ERROR
+ sh4a.s               -isa=sh2a-or-sh4-up       sh4a
  sh4a.s               -isa=sh2e                 ERROR
  sh4a.s               -isa=sh2e-up              sh4a
  sh4a.s               -isa=sh3-dsp              ERROR
*************** sh4al-dsp.s          -isa=sh            
*** 450,455 ****
--- 718,731 ----
  sh4al-dsp.s          -isa=sh-up                sh4al-dsp
  sh4al-dsp.s          -isa=sh2                  ERROR
  sh4al-dsp.s          -isa=sh2-up               sh4al-dsp
+ sh4al-dsp.s          -isa=sh2a-nofpu-or-sh3-nommu ERROR
+ sh4al-dsp.s          -isa=sh2a-nofpu-or-sh3-nommu-up sh4al-dsp
+ sh4al-dsp.s          -isa=sh2a-nofpu-or-sh4-nommu-nofpu ERROR
+ sh4al-dsp.s          -isa=sh2a-nofpu-or-sh4-nommu-nofpu-up sh4al-dsp
+ sh4al-dsp.s          -isa=sh2a-or-sh3e         ERROR
+ sh4al-dsp.s          -isa=sh2a-or-sh3e-up      ERROR
+ sh4al-dsp.s          -isa=sh2a-or-sh4          ERROR
+ sh4al-dsp.s          -isa=sh2a-or-sh4-up       ERROR
  sh4al-dsp.s          -isa=sh2e                 ERROR
  sh4al-dsp.s          -isa=sh2e-up              ERROR
  sh4al-dsp.s          -isa=sh3-dsp              ERROR
Index: gas/testsuite/gas/sh/arch/sh4.s
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/sh/arch/sh4.s,v
retrieving revision 1.1
diff -c -3 -p -r1.1 sh4.s
*** gas/testsuite/gas/sh/arch/sh4.s	29 Jun 2004 16:35:05 -0000	1.1
--- gas/testsuite/gas/sh/arch/sh4.s	20 Dec 2004 17:09:55 -0000
***************
*** 1,3 ****
  	.section .text
  sh4:
! 	fabs dr0
--- 1,4 ----
  	.section .text
  sh4:
! 	frchg
! 
Index: ld/testsuite/ld-sh/arch/arch_expected.txt
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-sh/arch/arch_expected.txt,v
retrieving revision 1.1
diff -c -3 -p -r1.1 arch_expected.txt
*** ld/testsuite/ld-sh/arch/arch_expected.txt	29 Jun 2004 16:35:05 -0000	1.1
--- ld/testsuite/ld-sh/arch/arch_expected.txt	20 Dec 2004 17:09:56 -0000
***************
*** 4,10 ****
  # It contains the expected results of the tests.
  # If the tests are failing because the expected results
  # have changed then run 'make check' and copy the new file
! # from <objdir>/ld/testsuite/arch_results.txt
  # to   <srcdir>/ld/testsuite/ld-sh/arch/arch_expected.txt .
  # Make sure the new expected results are ALL correct.
  #
--- 4,10 ----
  # It contains the expected results of the tests.
  # If the tests are failing because the expected results
  # have changed then run 'make check' and copy the new file
! # from <objdir>/ld/arch_results.txt
  # to   <srcdir>/ld/testsuite/ld-sh/arch/arch_expected.txt .
  # Make sure the new expected results are ALL correct.
  #
***************
*** 13,18 ****
--- 13,22 ----
  sh-dsp.o             sh-dsp.o             sh-dsp
  sh-dsp.o             sh.o                 sh-dsp
  sh-dsp.o             sh2.o                sh-dsp
+ sh-dsp.o             sh2a-nofpu-or-sh3-nommu.o sh3-dsp
+ sh-dsp.o             sh2a-nofpu-or-sh4-nommu-nofpu.o sh4al-dsp
+ sh-dsp.o             sh2a-or-sh3e.o       ERROR
+ sh-dsp.o             sh2a-or-sh4.o        ERROR
  sh-dsp.o             sh2e.o               ERROR
  sh-dsp.o             sh3-dsp.o            sh3-dsp
  sh-dsp.o             sh3-nommu.o          sh3-dsp
*************** sh-dsp.o             sh-unknown.o       
*** 28,38 ****
  sh.o                 sh-dsp.o             sh-dsp
  sh.o                 sh.o                 sh
  sh.o                 sh2.o                sh2
  sh.o                 sh2e.o               sh2e
  sh.o                 sh3-dsp.o            sh3-dsp
  sh.o                 sh3-nommu.o          sh3-nommu
  sh.o                 sh3.o                sh3
! sh.o                 sh3e.o               sh3e
  sh.o                 sh4-nofpu.o          sh4-nofpu
  sh.o                 sh4-nommu-nofpu.o    sh4-nommu-nofpu
  sh.o                 sh4.o                sh4
--- 32,46 ----
  sh.o                 sh-dsp.o             sh-dsp
  sh.o                 sh.o                 sh
  sh.o                 sh2.o                sh2
+ sh.o                 sh2a-nofpu-or-sh3-nommu.o sh2a-nofpu-or-sh3-nommu
+ sh.o                 sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-nofpu-or-sh4-nommu-nofpu
+ sh.o                 sh2a-or-sh3e.o       sh2a-or-sh3e
+ sh.o                 sh2a-or-sh4.o        sh2a-or-sh4
  sh.o                 sh2e.o               sh2e
  sh.o                 sh3-dsp.o            sh3-dsp
  sh.o                 sh3-nommu.o          sh3-nommu
  sh.o                 sh3.o                sh3
! sh.o                 sh3e.o               sh2a-or-sh3e
  sh.o                 sh4-nofpu.o          sh4-nofpu
  sh.o                 sh4-nommu-nofpu.o    sh4-nommu-nofpu
  sh.o                 sh4.o                sh4
*************** sh.o                 sh-unknown.o       
*** 43,53 ****
  sh2.o                sh-dsp.o             sh-dsp
  sh2.o                sh.o                 sh2
  sh2.o                sh2.o                sh2
  sh2.o                sh2e.o               sh2e
  sh2.o                sh3-dsp.o            sh3-dsp
  sh2.o                sh3-nommu.o          sh3-nommu
  sh2.o                sh3.o                sh3
! sh2.o                sh3e.o               sh3e
  sh2.o                sh4-nofpu.o          sh4-nofpu
  sh2.o                sh4-nommu-nofpu.o    sh4-nommu-nofpu
  sh2.o                sh4.o                sh4
--- 51,65 ----
  sh2.o                sh-dsp.o             sh-dsp
  sh2.o                sh.o                 sh2
  sh2.o                sh2.o                sh2
+ sh2.o                sh2a-nofpu-or-sh3-nommu.o sh2a-nofpu-or-sh3-nommu
+ sh2.o                sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2.o                sh2a-or-sh3e.o       sh2a-or-sh3e
+ sh2.o                sh2a-or-sh4.o        sh2a-or-sh4
  sh2.o                sh2e.o               sh2e
  sh2.o                sh3-dsp.o            sh3-dsp
  sh2.o                sh3-nommu.o          sh3-nommu
  sh2.o                sh3.o                sh3
! sh2.o                sh3e.o               sh2a-or-sh3e
  sh2.o                sh4-nofpu.o          sh4-nofpu
  sh2.o                sh4-nommu-nofpu.o    sh4-nommu-nofpu
  sh2.o                sh4.o                sh4
*************** sh2.o                sh4a-nofpu.o       
*** 55,68 ****
  sh2.o                sh4a.o               sh4a
  sh2.o                sh4al-dsp.o          sh4al-dsp
  sh2.o                sh-unknown.o         sh3
  sh2e.o               sh-dsp.o             ERROR
  sh2e.o               sh.o                 sh2e
  sh2e.o               sh2.o                sh2e
  sh2e.o               sh2e.o               sh2e
  sh2e.o               sh3-dsp.o            ERROR
  sh2e.o               sh3-nommu.o          sh3e
  sh2e.o               sh3.o                sh3e
! sh2e.o               sh3e.o               sh3e
  sh2e.o               sh4-nofpu.o          sh4
  sh2e.o               sh4-nommu-nofpu.o    sh4
  sh2e.o               sh4.o                sh4
--- 67,160 ----
  sh2.o                sh4a.o               sh4a
  sh2.o                sh4al-dsp.o          sh4al-dsp
  sh2.o                sh-unknown.o         sh3
+ sh2a-nofpu-or-sh3-nommu.o sh-dsp.o             sh3-dsp
+ sh2a-nofpu-or-sh3-nommu.o sh.o                 sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.o sh2.o                sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.o sh2a-nofpu-or-sh3-nommu.o sh2a-nofpu-or-sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.o sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh3-nommu.o sh2a-or-sh3e.o       sh2a-or-sh3e
+ sh2a-nofpu-or-sh3-nommu.o sh2a-or-sh4.o        sh2a-or-sh4
+ sh2a-nofpu-or-sh3-nommu.o sh2e.o               sh2a-or-sh3e
+ sh2a-nofpu-or-sh3-nommu.o sh3-dsp.o            sh3-dsp
+ sh2a-nofpu-or-sh3-nommu.o sh3-nommu.o          sh3-nommu
+ sh2a-nofpu-or-sh3-nommu.o sh3.o                sh3
+ sh2a-nofpu-or-sh3-nommu.o sh3e.o               sh2a-or-sh3e
+ sh2a-nofpu-or-sh3-nommu.o sh4-nofpu.o          sh4-nofpu
+ sh2a-nofpu-or-sh3-nommu.o sh4-nommu-nofpu.o    sh4-nommu-nofpu
+ sh2a-nofpu-or-sh3-nommu.o sh4.o                sh4
+ sh2a-nofpu-or-sh3-nommu.o sh4a-nofpu.o         sh4a-nofpu
+ sh2a-nofpu-or-sh3-nommu.o sh4a.o               sh4a
+ sh2a-nofpu-or-sh3-nommu.o sh4al-dsp.o          sh4al-dsp
+ sh2a-nofpu-or-sh3-nommu.o sh-unknown.o         sh3
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh-dsp.o             sh4al-dsp
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh.o                 sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh2.o                sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-nofpu-or-sh3-nommu.o sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-nofpu-or-sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-or-sh3e.o       sh2a-or-sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-or-sh4.o        sh2a-or-sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh2e.o               sh2a-or-sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh3-dsp.o            sh4al-dsp
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh3-nommu.o          sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh3.o                sh4-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh3e.o               sh2a-or-sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh4-nofpu.o          sh4-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh4-nommu-nofpu.o    sh4-nommu-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh4.o                sh4
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh4a-nofpu.o         sh4a-nofpu
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh4a.o               sh4a
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh4al-dsp.o          sh4al-dsp
+ sh2a-nofpu-or-sh4-nommu-nofpu.o sh-unknown.o         sh4-nofpu
+ sh2a-or-sh3e.o       sh-dsp.o             ERROR
+ sh2a-or-sh3e.o       sh.o                 sh2a-or-sh3e
+ sh2a-or-sh3e.o       sh2.o                sh2a-or-sh3e
+ sh2a-or-sh3e.o       sh2a-nofpu-or-sh3-nommu.o sh2a-or-sh3e
+ sh2a-or-sh3e.o       sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-or-sh4
+ sh2a-or-sh3e.o       sh2a-or-sh3e.o       sh2a-or-sh3e
+ sh2a-or-sh3e.o       sh2a-or-sh4.o        sh2a-or-sh4
+ sh2a-or-sh3e.o       sh2e.o               sh2a-or-sh3e
+ sh2a-or-sh3e.o       sh3-dsp.o            ERROR
+ sh2a-or-sh3e.o       sh3-nommu.o          sh3e
+ sh2a-or-sh3e.o       sh3.o                sh3e
+ sh2a-or-sh3e.o       sh3e.o               sh2a-or-sh3e
+ sh2a-or-sh3e.o       sh4-nofpu.o          sh4
+ sh2a-or-sh3e.o       sh4-nommu-nofpu.o    sh4
+ sh2a-or-sh3e.o       sh4.o                sh4
+ sh2a-or-sh3e.o       sh4a-nofpu.o         sh4a
+ sh2a-or-sh3e.o       sh4a.o               sh4a
+ sh2a-or-sh3e.o       sh4al-dsp.o          ERROR
+ sh2a-or-sh3e.o       sh-unknown.o         sh3e
+ sh2a-or-sh4.o        sh-dsp.o             ERROR
+ sh2a-or-sh4.o        sh.o                 sh2a-or-sh4
+ sh2a-or-sh4.o        sh2.o                sh2a-or-sh4
+ sh2a-or-sh4.o        sh2a-nofpu-or-sh3-nommu.o sh2a-or-sh4
+ sh2a-or-sh4.o        sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-or-sh4
+ sh2a-or-sh4.o        sh2a-or-sh3e.o       sh2a-or-sh4
+ sh2a-or-sh4.o        sh2a-or-sh4.o        sh2a-or-sh4
+ sh2a-or-sh4.o        sh2e.o               sh2a-or-sh4
+ sh2a-or-sh4.o        sh3-dsp.o            ERROR
+ sh2a-or-sh4.o        sh3-nommu.o          sh4
+ sh2a-or-sh4.o        sh3.o                sh4
+ sh2a-or-sh4.o        sh3e.o               sh2a-or-sh4
+ sh2a-or-sh4.o        sh4-nofpu.o          sh4
+ sh2a-or-sh4.o        sh4-nommu-nofpu.o    sh4
+ sh2a-or-sh4.o        sh4.o                sh4
+ sh2a-or-sh4.o        sh4a-nofpu.o         sh4a
+ sh2a-or-sh4.o        sh4a.o               sh4a
+ sh2a-or-sh4.o        sh4al-dsp.o          ERROR
+ sh2a-or-sh4.o        sh-unknown.o         sh4
  sh2e.o               sh-dsp.o             ERROR
  sh2e.o               sh.o                 sh2e
  sh2e.o               sh2.o                sh2e
+ sh2e.o               sh2a-nofpu-or-sh3-nommu.o sh2a-or-sh3e
+ sh2e.o               sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-or-sh4
+ sh2e.o               sh2a-or-sh3e.o       sh2a-or-sh3e
+ sh2e.o               sh2a-or-sh4.o        sh2a-or-sh4
  sh2e.o               sh2e.o               sh2e
  sh2e.o               sh3-dsp.o            ERROR
  sh2e.o               sh3-nommu.o          sh3e
  sh2e.o               sh3.o                sh3e
! sh2e.o               sh3e.o               sh2a-or-sh3e
  sh2e.o               sh4-nofpu.o          sh4
  sh2e.o               sh4-nommu-nofpu.o    sh4
  sh2e.o               sh4.o                sh4
*************** sh2e.o               sh-unknown.o       
*** 73,78 ****
--- 165,174 ----
  sh3-dsp.o            sh-dsp.o             sh3-dsp
  sh3-dsp.o            sh.o                 sh3-dsp
  sh3-dsp.o            sh2.o                sh3-dsp
+ sh3-dsp.o            sh2a-nofpu-or-sh3-nommu.o sh3-dsp
+ sh3-dsp.o            sh2a-nofpu-or-sh4-nommu-nofpu.o sh4al-dsp
+ sh3-dsp.o            sh2a-or-sh3e.o       ERROR
+ sh3-dsp.o            sh2a-or-sh4.o        ERROR
  sh3-dsp.o            sh2e.o               ERROR
  sh3-dsp.o            sh3-dsp.o            sh3-dsp
  sh3-dsp.o            sh3-nommu.o          sh3-dsp
*************** sh3-dsp.o            sh-unknown.o       
*** 88,93 ****
--- 184,193 ----
  sh3-nommu.o          sh-dsp.o             sh3-dsp
  sh3-nommu.o          sh.o                 sh3-nommu
  sh3-nommu.o          sh2.o                sh3-nommu
+ sh3-nommu.o          sh2a-nofpu-or-sh3-nommu.o sh3-nommu
+ sh3-nommu.o          sh2a-nofpu-or-sh4-nommu-nofpu.o sh4-nommu-nofpu
+ sh3-nommu.o          sh2a-or-sh3e.o       sh3e
+ sh3-nommu.o          sh2a-or-sh4.o        sh4
  sh3-nommu.o          sh2e.o               sh3e
  sh3-nommu.o          sh3-dsp.o            sh3-dsp
  sh3-nommu.o          sh3-nommu.o          sh3-nommu
*************** sh3-nommu.o          sh-unknown.o       
*** 103,108 ****
--- 203,212 ----
  sh3.o                sh-dsp.o             sh3-dsp
  sh3.o                sh.o                 sh3
  sh3.o                sh2.o                sh3
+ sh3.o                sh2a-nofpu-or-sh3-nommu.o sh3
+ sh3.o                sh2a-nofpu-or-sh4-nommu-nofpu.o sh4-nofpu
+ sh3.o                sh2a-or-sh3e.o       sh3e
+ sh3.o                sh2a-or-sh4.o        sh4
  sh3.o                sh2e.o               sh3e
  sh3.o                sh3-dsp.o            sh3-dsp
  sh3.o                sh3-nommu.o          sh3
*************** sh3.o                sh4a.o             
*** 116,128 ****
  sh3.o                sh4al-dsp.o          sh4al-dsp
  sh3.o                sh-unknown.o         sh3
  sh3e.o               sh-dsp.o             ERROR
! sh3e.o               sh.o                 sh3e
! sh3e.o               sh2.o                sh3e
! sh3e.o               sh2e.o               sh3e
  sh3e.o               sh3-dsp.o            ERROR
  sh3e.o               sh3-nommu.o          sh3e
  sh3e.o               sh3.o                sh3e
! sh3e.o               sh3e.o               sh3e
  sh3e.o               sh4-nofpu.o          sh4
  sh3e.o               sh4-nommu-nofpu.o    sh4
  sh3e.o               sh4.o                sh4
--- 220,236 ----
  sh3.o                sh4al-dsp.o          sh4al-dsp
  sh3.o                sh-unknown.o         sh3
  sh3e.o               sh-dsp.o             ERROR
! sh3e.o               sh.o                 sh2a-or-sh3e
! sh3e.o               sh2.o                sh2a-or-sh3e
! sh3e.o               sh2a-nofpu-or-sh3-nommu.o sh2a-or-sh3e
! sh3e.o               sh2a-nofpu-or-sh4-nommu-nofpu.o sh2a-or-sh4
! sh3e.o               sh2a-or-sh3e.o       sh2a-or-sh3e
! sh3e.o               sh2a-or-sh4.o        sh2a-or-sh4
! sh3e.o               sh2e.o               sh2a-or-sh3e
  sh3e.o               sh3-dsp.o            ERROR
  sh3e.o               sh3-nommu.o          sh3e
  sh3e.o               sh3.o                sh3e
! sh3e.o               sh3e.o               sh2a-or-sh3e
  sh3e.o               sh4-nofpu.o          sh4
  sh3e.o               sh4-nommu-nofpu.o    sh4
  sh3e.o               sh4.o                sh4
*************** sh3e.o               sh-unknown.o       
*** 133,138 ****
--- 241,250 ----
  sh4-nofpu.o          sh-dsp.o             sh4al-dsp
  sh4-nofpu.o          sh.o                 sh4-nofpu
  sh4-nofpu.o          sh2.o                sh4-nofpu
+ sh4-nofpu.o          sh2a-nofpu-or-sh3-nommu.o sh4-nofpu
+ sh4-nofpu.o          sh2a-nofpu-or-sh4-nommu-nofpu.o sh4-nofpu
+ sh4-nofpu.o          sh2a-or-sh3e.o       sh4
+ sh4-nofpu.o          sh2a-or-sh4.o        sh4
  sh4-nofpu.o          sh2e.o               sh4
  sh4-nofpu.o          sh3-dsp.o            sh4al-dsp
  sh4-nofpu.o          sh3-nommu.o          sh4-nofpu
*************** sh4-nofpu.o          sh-unknown.o       
*** 148,153 ****
--- 260,269 ----
  sh4-nommu-nofpu.o    sh-dsp.o             sh4al-dsp
  sh4-nommu-nofpu.o    sh.o                 sh4-nommu-nofpu
  sh4-nommu-nofpu.o    sh2.o                sh4-nommu-nofpu
+ sh4-nommu-nofpu.o    sh2a-nofpu-or-sh3-nommu.o sh4-nommu-nofpu
+ sh4-nommu-nofpu.o    sh2a-nofpu-or-sh4-nommu-nofpu.o sh4-nommu-nofpu
+ sh4-nommu-nofpu.o    sh2a-or-sh3e.o       sh4
+ sh4-nommu-nofpu.o    sh2a-or-sh4.o        sh4
  sh4-nommu-nofpu.o    sh2e.o               sh4
  sh4-nommu-nofpu.o    sh3-dsp.o            sh4al-dsp
  sh4-nommu-nofpu.o    sh3-nommu.o          sh4-nommu-nofpu
*************** sh4-nommu-nofpu.o    sh-unknown.o       
*** 163,168 ****
--- 279,288 ----
  sh4.o                sh-dsp.o             ERROR
  sh4.o                sh.o                 sh4
  sh4.o                sh2.o                sh4
+ sh4.o                sh2a-nofpu-or-sh3-nommu.o sh4
+ sh4.o                sh2a-nofpu-or-sh4-nommu-nofpu.o sh4
+ sh4.o                sh2a-or-sh3e.o       sh4
+ sh4.o                sh2a-or-sh4.o        sh4
  sh4.o                sh2e.o               sh4
  sh4.o                sh3-dsp.o            ERROR
  sh4.o                sh3-nommu.o          sh4
*************** sh4.o                sh-unknown.o       
*** 178,183 ****
--- 298,307 ----
  sh4a-nofpu.o         sh-dsp.o             sh4al-dsp
  sh4a-nofpu.o         sh.o                 sh4a-nofpu
  sh4a-nofpu.o         sh2.o                sh4a-nofpu
+ sh4a-nofpu.o         sh2a-nofpu-or-sh3-nommu.o sh4a-nofpu
+ sh4a-nofpu.o         sh2a-nofpu-or-sh4-nommu-nofpu.o sh4a-nofpu
+ sh4a-nofpu.o         sh2a-or-sh3e.o       sh4a
+ sh4a-nofpu.o         sh2a-or-sh4.o        sh4a
  sh4a-nofpu.o         sh2e.o               sh4a
  sh4a-nofpu.o         sh3-dsp.o            sh4al-dsp
  sh4a-nofpu.o         sh3-nommu.o          sh4a-nofpu
*************** sh4a-nofpu.o         sh-unknown.o       
*** 193,198 ****
--- 317,326 ----
  sh4a.o               sh-dsp.o             ERROR
  sh4a.o               sh.o                 sh4a
  sh4a.o               sh2.o                sh4a
+ sh4a.o               sh2a-nofpu-or-sh3-nommu.o sh4a
+ sh4a.o               sh2a-nofpu-or-sh4-nommu-nofpu.o sh4a
+ sh4a.o               sh2a-or-sh3e.o       sh4a
+ sh4a.o               sh2a-or-sh4.o        sh4a
  sh4a.o               sh2e.o               sh4a
  sh4a.o               sh3-dsp.o            ERROR
  sh4a.o               sh3-nommu.o          sh4a
*************** sh4a.o               sh-unknown.o       
*** 208,213 ****
--- 336,345 ----
  sh4al-dsp.o          sh-dsp.o             sh4al-dsp
  sh4al-dsp.o          sh.o                 sh4al-dsp
  sh4al-dsp.o          sh2.o                sh4al-dsp
+ sh4al-dsp.o          sh2a-nofpu-or-sh3-nommu.o sh4al-dsp
+ sh4al-dsp.o          sh2a-nofpu-or-sh4-nommu-nofpu.o sh4al-dsp
+ sh4al-dsp.o          sh2a-or-sh3e.o       ERROR
+ sh4al-dsp.o          sh2a-or-sh4.o        ERROR
  sh4al-dsp.o          sh2e.o               ERROR
  sh4al-dsp.o          sh3-dsp.o            sh4al-dsp
  sh4al-dsp.o          sh3-nommu.o          sh4al-dsp
*************** sh4al-dsp.o          sh-unknown.o       
*** 223,228 ****
--- 355,364 ----
  sh-unknown.o         sh-dsp.o             sh3-dsp
  sh-unknown.o         sh.o                 sh3
  sh-unknown.o         sh2.o                sh3
+ sh-unknown.o         sh2a-nofpu-or-sh3-nommu.o sh3
+ sh-unknown.o         sh2a-nofpu-or-sh4-nommu-nofpu.o sh4-nofpu
+ sh-unknown.o         sh2a-or-sh3e.o       sh3e
+ sh-unknown.o         sh2a-or-sh4.o        sh4
  sh-unknown.o         sh2e.o               sh3e
  sh-unknown.o         sh3-dsp.o            sh3-dsp
  sh-unknown.o         sh3-nommu.o          sh3
Index: ld/testsuite/ld-sh/arch/sh4.s
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-sh/arch/sh4.s,v
retrieving revision 1.1
diff -c -3 -p -r1.1 sh4.s
*** ld/testsuite/ld-sh/arch/sh4.s	29 Jun 2004 16:35:05 -0000	1.1
--- ld/testsuite/ld-sh/arch/sh4.s	20 Dec 2004 17:09:56 -0000
***************
*** 1,3 ****
  	.section .text
  sh4:
! 	fabs dr0
--- 1,4 ----
  	.section .text
  sh4:
! 	frchg
! 
*** /dev/null	2004-06-24 19:04:38.000000000 +0100
--- gas/testsuite/gas/sh/arch/sh2a-nofpu-or-sh3-nommu.s	2004-12-15 15:43:37.000000000 +0000
***************
*** 0 ****
--- 1,3 ----
+ 	.section .text
+ sh2a_nofpu_or_sh3_nommu:
+ 	shad r3, r4
*** /dev/null	2004-06-24 19:04:38.000000000 +0100
--- gas/testsuite/gas/sh/arch/sh2a-nofpu-or-sh4-nommu-nofpu.s	2004-12-15 15:45:26.000000000 +0000
***************
*** 0 ****
--- 1,3 ----
+ 	.section .text
+ sh2a_nofpu_or_sh4_nommu_nofpu:	
+ 	pref @r3
*** /dev/null	2004-06-24 19:04:38.000000000 +0100
--- gas/testsuite/gas/sh/arch/sh2a-or-sh3e.s	2004-12-15 15:46:02.000000000 +0000
***************
*** 0 ****
--- 1,3 ----
+ 	.section .text
+ sh2a_or_sh3e:	
+ 	fsqrt fr3
*** /dev/null	2004-06-24 19:04:38.000000000 +0100
--- gas/testsuite/gas/sh/arch/sh2a-or-sh4.s	2004-12-15 15:46:26.000000000 +0000
***************
*** 0 ****
--- 1,3 ----
+ 	.section .text
+ sh2a_or_sh4:	
+ 	fcnvsd fpul, dr4
*** /dev/null	2004-06-24 19:04:38.000000000 +0100
--- ld/testsuite/ld-sh/arch/sh2a-nofpu-or-sh3-nommu.s	2004-12-15 15:49:55.000000000 +0000
***************
*** 0 ****
--- 1,3 ----
+ 	.section .text
+ sh2a_nofpu_or_sh3_nommu:
+ 	shad r3, r4
*** /dev/null	2004-06-24 19:04:38.000000000 +0100
--- ld/testsuite/ld-sh/arch/sh2a-nofpu-or-sh4-nommu-nofpu.s	2004-12-15 15:49:55.000000000 +0000
***************
*** 0 ****
--- 1,3 ----
+ 	.section .text
+ sh2a_nofpu_or_sh4_nommu_nofpu:	
+ 	pref @r3
*** /dev/null	2004-06-24 19:04:38.000000000 +0100
--- ld/testsuite/ld-sh/arch/sh2a-or-sh3e.s	2004-12-15 15:49:55.000000000 +0000
***************
*** 0 ****
--- 1,3 ----
+ 	.section .text
+ sh2a_or_sh3e:	
+ 	fsqrt fr3
*** /dev/null	2004-06-24 19:04:38.000000000 +0100
--- ld/testsuite/ld-sh/arch/sh2a-or-sh4.s	2004-12-15 15:49:55.000000000 +0000
***************
*** 0 ****
--- 1,3 ----
+ 	.section .text
+ sh2a_or_sh4:	
+ 	fcnvsd fpul, dr4

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