This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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: [PATCH] ARM autogenerate the tune attribute


> 2004-08-03  Richard Earnshaw <rearnsha@arm.com>
> 
> 	* arm/gentune.sh: New file.
> 	* arm/t-arm: New file.
> 	* arm/arm-tune.md: New file (autogenerated).
> 	* config.gcc (arm*-*-*): Add t-arm to tmake_file for all variants.
> 	* arm.md (attribute tune): Delete.  Include arm-tune.md.

Whoops, I missed out the strongarm and xscale configurations in
config.gcc.  Fixed thusly:

2004-08-03  Richard Earnshaw  <rearnsha@arm.com>

	* config.gcc (strongarm-*, xscale-*): Add t-arm to tmake_files.



Index: config.gcc
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config.gcc,v
retrieving revision 1.473
diff -p -r1.473 config.gcc
*** config.gcc	3 Aug 2004 13:27:02 -0000	1.473
--- config.gcc	3 Aug 2004 15:20:58 -0000
*************** sparc64-*-netbsd*)
*** 1975,1981 ****
  	;;
  strongarm-*-elf*)
  	tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
! 	tmake_file=arm/t-strongarm-elf
  	out_file=arm/arm.c
  	md_file=arm/arm.md
  	extra_modes=arm/arm-modes.def
--- 1975,1981 ----
  	;;
  strongarm-*-elf*)
  	tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
! 	tmake_file="arm/t-arm arm/t-strongarm-elf"
  	out_file=arm/arm.c
  	md_file=arm/arm.md
  	extra_modes=arm/arm-modes.def
*************** strongarm-*-elf*)
*** 1983,1989 ****
  	;;
  strongarm-*-pe)
  	tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/strongarm-coff.h arm/arm.h arm/pe.h arm/strongarm-pe.h"
! 	tmake_file=arm/t-strongarm-pe
  	out_file=arm/arm.c
  	md_file=arm/arm.md
  	extra_modes=arm/arm-modes.def
--- 1983,1989 ----
  	;;
  strongarm-*-pe)
  	tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/strongarm-coff.h arm/arm.h arm/pe.h arm/strongarm-pe.h"
! 	tmake_file="arm/t-arm arm/t-strongarm-pe"
  	out_file=arm/arm.c
  	md_file=arm/arm.md
  	extra_modes=arm/arm-modes.def
*************** strongarm-*-pe)
*** 1992,1998 ****
  	;;
  strongarm-*-kaos*)
  	tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h kaos.h arm/kaos-strongarm.h"
! 	tmake_file=arm/t-strongarm-elf
  	out_file=arm/arm.c
  	md_file=arm/arm.md
  	extra_modes=arm/arm-modes.def
--- 1992,1998 ----
  	;;
  strongarm-*-kaos*)
  	tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h kaos.h arm/kaos-strongarm.h"
! 	tmake_file="arm/t-arm arm/t-strongarm-elf"
  	out_file=arm/arm.c
  	md_file=arm/arm.md
  	extra_modes=arm/arm-modes.def
*************** vax-*-ultrix*)			# VAXen running ultrix
*** 2073,2079 ****
  	;;
  xscale-*-elf)
  	tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
! 	tmake_file=arm/t-xscale-elf
  	out_file=arm/arm.c
  	md_file=arm/arm.md
  	extra_modes=arm/arm-modes.def
--- 2073,2079 ----
  	;;
  xscale-*-elf)
  	tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
! 	tmake_file="arm/t-arm arm/t-xscale-elf"
  	out_file=arm/arm.c
  	md_file=arm/arm.md
  	extra_modes=arm/arm-modes.def
*************** xscale-*-elf)
*** 2081,2087 ****
  	;;
  xscale-*-coff)
  	tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/xscale-coff.h arm/arm.h"
! 	tmake_file=arm/t-xscale-coff
  	out_file=arm/arm.c
  	md_file=arm/arm.md
  	extra_modes=arm/arm-modes.def
--- 2081,2087 ----
  	;;
  xscale-*-coff)
  	tm_file="arm/semi.h arm/aout.h arm/coff.h dbxcoff.h arm/xscale-coff.h arm/arm.h"
! 	tmake_file="arm/t-arm arm/t-xscale-coff"
  	out_file=arm/arm.c
  	md_file=arm/arm.md
  	extra_modes=arm/arm-modes.def

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