Skip to content
Snippets Groups Projects
  1. Nov 14, 2012
  2. Nov 12, 2012
  3. May 09, 2012
  4. May 01, 2012
  5. Mar 28, 2012
    • Georg-Johann Lay's avatar
      re PR target/52737 ([avr]: -mtiny-stack shall not influence multilib selection) · 7fd6378e
      Georg-Johann Lay authored
      	PR target/52737
      	* contrib/gcc_update (files_and_dependencies):
      	Remove gcc/config/avr/t-multilib from touch data.
      
      gcc/
      	PR target/52737
      	* config.gcc (tm_file): Remove avr/multilib.h.
      
      	* doc/invoke.texi (AVR Options): Adjust
      	documentation of -mtiny-stack.
      
      	* config/avr/genmultilib.awk: Remove code to generate multilib.h.
      	(BEGIN): Use -msp8 as multilib option instead of -mtiny-stack.
      	* config/avr/t-avr: Remove generation of multilib.h.
      	* config/avr/t-multilib: Regenerate.
      	* config/avr/multilib.h: Remove.
      	* config/avr/avr.opt (-msp8): New option.
      	(avr_sp8): New variable.
      	* config/avr/driver-avr.c (avr_device_to_sp8): New function.
      	* config/avr/avr.h (AVR_HAVE_SPH): New define.
      	(AVR_HAVE_8BIT_SP): Also set by avr_sp8 i.e. -msp8.
      	(avr_device_to_sp8): New prototype.
      	(EXTRA_SPEC_FUNCTIONS): Add { "device_to_sp8", avr_device_to_sp8 }
      	(DRIVER_SELF_SPECS): New define.
      	* config/avr/avr-c.c (avr_cpu_cpp_builtins): New built-in defines:
      	__AVR_SP8__, __AVR_HAVE_SPH__.
      	* config/avr/avr.c (output_movhi): Use AVR_HAVE_SPH instead of
      	AVR_HAVE_8BIT_SP to decide if SP_H is present.
      	(avr_file_start): Ditto.
      	
      libgcc/
      	PR target/52737
      	* config/avr/lib1funcs.S: Use __AVR_HAVE_SPH__ for SP_H checks
      	instead of __AVR_HAVE_8BIT_SP__.
      
      From-SVN: r185907
      7fd6378e
  6. Feb 14, 2012
    • Walter Lee's avatar
      Add ports for TILE-Gx and TILEPro. · dd552284
      Walter Lee authored
      .
      	* MAINTAINERS (tilegx port): Add myself.
      	(tilepro port): Add myself.
      
      contrib
      	* config-list.mk (LIST): Add tilegx-linux-gnu and
      	tilepro-linux-gnu.
      	* gcc_update (gcc/config/tilegx/mul-tables.c): New dependencies.
      	(gcc/config/tilepro/mul-tables.c): New dependencies.
      
      gcc
      	* config.gcc: Handle tilegx and tilepro.
      	* configure.ac (gcc_cv_as_dwarf2_debug_line): Enable test for
      	tilegx and tilepro.
      	Add HAVE_AS_TLS check for tilegx and tilepro.
      	* configure: Regenerate.
      	* doc/contrib.texi: Add Mat Hostetter and self.
      	* doc/extend.texi (TILE-Gx Built-in Functions): New node.
      	Document instruction intrinsics and network accessing intrinsics.
      	(TILEPro Built-in Functions): New node.	 Document instruction
      	intrinsics and network accessing intrinsics.
      	* doc/install.texi (Specific, tilegx-*-linux*): Document it.
      	(Specific, tilepro-*-linux*): Likewise.
      	* doc/invoke.texi (TILE-Gx Options): New section.
      	(TILEPro Options): New section.
      	* doc/md.texi (TILE-Gx): New section.
      	(TILEPro): New section.
      	* common/config/tilegx: New directory for tilegx.
      	* common/config/tilepro: New directory for tilepro.
      	* config/tilegx: New directory for tilegx.
      	* config/tilepro: New directory for tilepro.
      
      gcc/testsuite
      	* g++.dg/other/PR23205.C: Disable test on tile.
      	* g++.dg/other/pr23205-2.C: Disable test on tile.
      	* gcc.dg/20020312-2.c: Add a condition for __tile__.
      	* gcc.dg/20040813-1.c: Disable test on tile.
      	* gcc.dg/lower-subreg-1.c: Disable test on tilegx.
      	* gcc.misc-tests/linkage.exp: Handle tilegx.
      
      libcpp
      	* configure.ac: Require 64-bit hwint for tilegx and tilepro.
      	* configure: Regenerate.
      
      libgcc
      	* config.host: Handle tilegx and tilepro.
      	* config/tilegx: New directory for tilegx.
      	* config/tilepro: New directory for tilepro.
      
      libgomp
      	* configure.tgt: Handle tilegx and tilepro.
      	* config/linux/tile: New directory for tilegx and tilepro.
      
      Added:
           trunk/gcc/common/config/tilegx/tilegx-common.c
           trunk/gcc/common/config/tilepro/tilepro-common.c
           trunk/gcc/config/tilegx/constraints.md
           trunk/gcc/config/tilegx/linux.h
           trunk/gcc/config/tilegx/mul-tables.c
           trunk/gcc/config/tilegx/predicates.md
           trunk/gcc/config/tilegx/sync.md
           trunk/gcc/config/tilegx/t-tilegx
           trunk/gcc/config/tilegx/tilegx-builtins.h
           trunk/gcc/config/tilegx/tilegx-c.c
           trunk/gcc/config/tilegx/tilegx-generic.md
           trunk/gcc/config/tilegx/tilegx-modes.def
           trunk/gcc/config/tilegx/tilegx-multiply.h
           trunk/gcc/config/tilegx/tilegx-protos.h
           trunk/gcc/config/tilegx/tilegx.c
           trunk/gcc/config/tilegx/tilegx.h
           trunk/gcc/config/tilegx/tilegx.md
           trunk/gcc/config/tilegx/tilegx.opt
           trunk/gcc/config/tilepro/constraints.md
           trunk/gcc/config/tilepro/gen-mul-tables.cc
           trunk/gcc/config/tilepro/linux.h
           trunk/gcc/config/tilepro/mul-tables.c
           trunk/gcc/config/tilepro/predicates.md
           trunk/gcc/config/tilepro/t-tilepro
           trunk/gcc/config/tilepro/tilepro-builtins.h
           trunk/gcc/config/tilepro/tilepro-c.c
           trunk/gcc/config/tilepro/tilepro-generic.md
           trunk/gcc/config/tilepro/tilepro-modes.def
           trunk/gcc/config/tilepro/tilepro-multiply.h
           trunk/gcc/config/tilepro/tilepro-protos.h
           trunk/gcc/config/tilepro/tilepro.c
           trunk/gcc/config/tilepro/tilepro.h
           trunk/gcc/config/tilepro/tilepro.md
           trunk/gcc/config/tilepro/tilepro.opt
           trunk/libgcc/config/tilegx/sfp-machine.h
           trunk/libgcc/config/tilegx/sfp-machine32.h
           trunk/libgcc/config/tilegx/sfp-machine64.h
           trunk/libgcc/config/tilegx/t-crtstuff
           trunk/libgcc/config/tilegx/t-softfp
           trunk/libgcc/config/tilegx/t-tilegx
           trunk/libgcc/config/tilepro/atomic.c
           trunk/libgcc/config/tilepro/atomic.h
           trunk/libgcc/config/tilepro/linux-unwind.h
           trunk/libgcc/config/tilepro/sfp-machine.h
           trunk/libgcc/config/tilepro/softdivide.c
           trunk/libgcc/config/tilepro/softmpy.S
           trunk/libgcc/config/tilepro/t-crtstuff
           trunk/libgcc/config/tilepro/t-tilepro
           trunk/libgomp/config/linux/tile/futex.h
      Modified:
           trunk/MAINTAINERS
           trunk/contrib/config-list.mk
           trunk/contrib/gcc_update
           trunk/gcc/config.gcc
           trunk/gcc/configure
           trunk/gcc/configure.ac
           trunk/gcc/doc/contrib.texi
           trunk/gcc/doc/extend.texi
           trunk/gcc/doc/install.texi
           trunk/gcc/doc/invoke.texi
           trunk/gcc/doc/md.texi
           trunk/gcc/testsuite/g++.dg/other/PR23205.C
           trunk/gcc/testsuite/g++.dg/other/pr23205-2.C
           trunk/gcc/testsuite/gcc.dg/20020312-2.c
           trunk/gcc/testsuite/gcc.dg/20040813-1.c
           trunk/gcc/testsuite/gcc.dg/lower-subreg-1.c
           trunk/gcc/testsuite/gcc.misc-tests/linkage.exp
           trunk/libcpp/configure
           trunk/libcpp/configure.ac
           trunk/libgcc/config.host
           trunk/libgomp/configure.tgt
      
      From-SVN: r184203
      dd552284
  7. Jan 02, 2012
    • Georg-Johann Lay's avatar
      re PR target/51345 ([avr] Devices with 8-bit SP need their own multilib(s)) · 884f56d1
      Georg-Johann Lay authored
      contrib/
      	PR target/51345
      	* gcc_update (files_and_dependencies): Add
      	gcc/config/avr/t-multilib, gcc/config/avr/multilib.h.
      	
      libgcc/
      	PR target/51345
      	* config/avr/lib1funcs.S: Remove FIXME comments.
      	(SPEED_DIV): Depend on __AVR_HAVE_8BIT_SP__.
      gcc/	
      	PR target/51345
      	* config.gcc (tm_file target=avr]): Add avr/avr-multilib.h
      	(tmake_file target=avr): Add avr/t-multilib.
      
      	* config/avr/avr-c.c (avr_cpu_cpp_builtins): Use AVR_HAVE_8BIT_SP
      	to built-in define __AVR_HAVE_8BIT_SP__, __AVR_HAVE_16BIT_SP__.
      	* config/avr/genmultilib.awk: New file.
      	* config/avr/t-multilib: New auto-generated file.
      	* config/avr/multilib.h: New auto-generated file.
      	* config/avr/t-avr (AVR_MCUS): New variable.
      	(genopt.sh): Use it.
      	(s-mlib): Depend on t-multilib.
      	(t-multilib, multilib.h): New dependencies.
      	(s-avr-mlib): New rule to build t-multilib, multilib.h from AVR_MCUS.
      	(MULTILIB_OPTIONS): Remove.
      	(MULTILIB_MATCHES): Remove.
      	(MULTILIB_DIRNAMES): Remove.
      	(MULTILIB_EXCEPTIONS): Remove:
      	* config/avr/genopt.sh: Don't use hard coded file name;
      	pass AVR_MCUS from t-avr instead.
      
      From-SVN: r182797
      884f56d1
  8. Nov 08, 2011
  9. Aug 25, 2011
  10. Jul 15, 2011
    • Bernd Schmidt's avatar
      invoke.texi (C6X Options): New section. · bcead286
      Bernd Schmidt authored
      gcc/
      	* doc/invoke.texi (C6X Options): New section.
      	* doc/md.texi (TI C6X family): New section.
      	* config.gcc: Handle tic6x, in particular tic6x-*-elf and
      	tic6x-*-uclinux.
      	* longlong.h (add_ssaaaa, __umulsidi3, umul_ppmm,
      	count_leading_zeros, count_trailing_zeros, UMUL_TIME, UDIV_TIME):
      	Provide C6X definitions.
      	* config/c6x/c6x.md: New file.
      	* config/c6x/constraints.md: New file.
      	* config/c6x/predicates.md: New file.
      	* config/c6x/c6x-sched.md.in: New file.
      	* config/c6x/c6x-sched.md: New file.
      	* config/c6x/gensched.sh: New file.
      	* config/c6x/c6x-mult.md.in: New file.
      	* config/c6x/genmult.sh: New file.
      	* config/c6x/c6x-mult.md: New file.
      	* config/c6x/sync.md: New file.
      	* config/c6x/c6x-protos.h: New file.
      	* config/c6x/sfp-machine.h: New file.
      	* config/c6x/c6x.c: New file.
      	* config/c6x/c6x.h: New file.
      	* config/c6x/crti.s: New file.
      	* config/c6x/crtn.s: New file.
      	* config/c6x/lib1funcs.asm: New file.
      	* config/c6x/c6x-modes.def: New file.
      	* config/c6x/genopt.sh: New file.
      	* config/c6x/c6x.opt: New file.
      	* config/c6x/c6x-tables.opt: New file.
      	* config/c6x/c6x-opts.h: New file.
      	* config/c6x/c6x-isas.def: New file.
      	* config/c6x/elf.h: New file.
      	* config/c6x/elf-common.h: New file.
      	* config/c6x/uclinux-elf.h: New file.
      	* config/c6x/t-c6x: New file.
      	* config/c6x/t-c6x-elf: New file.
      	* config/c6x/t-c6x-uclinux: New file.
      	* config/c6x/t-c6x-softfp: New file.
      	* config/c6x/gtd.c: New file.
      	* config/c6x/gtf.c: New file.
      	* config/c6x/ltd.c: New file.
      	* config/c6x/ltf.c: New file.
      	* config/c6x/ged.c: New file.
      	* config/c6x/gef.c: New file.
      	* config/c6x/led.c: New file.
      	* config/c6x/lef.c: New file.
      	* config/c6x/eqd.c: New file.
      	* config/c6x/eqf.c: New file.
      	* config/c6x/libgcc-c6xeabi.ver: New file.
      
      contrib/
      	* gcc_update: Add C6X generated files.
      	* contrib/config-list.mk: Add c6x-elf and c6x-uclinux.
      
      libgcc/
      	* config.host: Handle tic6x-*-*.
      	* config/c6x/c6x-abi.h: New file.
      
      From-SVN: r176308
      bcead286
  11. Jun 21, 2011
    • Joseph Myers's avatar
      gcc_update (gcc/config/avr/avr-tables.opt): New dependencies. · 1b916ca6
      Joseph Myers authored
      contrib:
      	* gcc_update (gcc/config/avr/avr-tables.opt): New dependencies.
      
      gcc:
      	* config/avr/avr-mcus.def, config/avr/genopt.sh: New files.
      	* config/avr/avr-tables.opt: New file (generated).
      	* config.gcc (avr-*-*): Use avr/avr-tables.opt.
      	* config/avr/avr-devices.c (avr_mcu_types): Move contents to
      	avr-mcus.def.
      	* config/avr/avr.c (avr_help, TARGET_HELP): Remove.
      	(avr_option_override): Don't process -mmcu= argument here.  Set
      	avr_current_device using avr_mcu_index.
      	(avr_file_start): Use avr_current_device->name instead of
      	avr_mcu_name.
      	* config/avr/avr.opt (mmcu=): Use Enum.
      	* config/avr/t-avr (avr-devices.o): Update dependencies.
      	($(srcdir)/config/avr/avr-tables.opt): New.
      	* target.def (help): Remove.
      	* doc/tm.texi.in (TARGET_HELP): Remove.
      	* doc/tm.texi: Regenerate.
      	* opts.c: Don't include target.h.
      	(common_handle_option): Don't call targetm.help.
      	* system.h (TARGET_HELP): Poison.
      	* Makefile.in (opts.o): Update dependencies.
      
      From-SVN: r175248
      1b916ca6
  12. May 19, 2011
    • Joseph Myers's avatar
      gcc_update (gcc/config/arm/arm-tables.opt): Also depend on gcc/config/arm/arm-fpus.def. · 12d844c8
      Joseph Myers authored
      contrib:
      	* gcc_update (gcc/config/arm/arm-tables.opt): Also depend on
      	gcc/config/arm/arm-fpus.def.
      
      gcc:
      	* config/arm/arm-fpus.def: New.
      	* config/arm/genopt.sh: Generate Enum and EnumValue entries from
      	arm-fpus.def.
      	* config/arm/arm-tables.opt: Regenerate.
      	* config/arm/arm.c (all_fpus): Move contents to arm-fpus.def.
      	(arm_option_override): Don't decode FPU name to string here.
      	* config/arm/arm.opt (mfpu=): Use Enum.
      	* config/arm/t-arm ($(srcdir)/config/arm/arm-tables.opt, arm.o):
      	Update dependencies.
      
      From-SVN: r173916
      12d844c8
  13. May 10, 2011
    • Joseph Myers's avatar
      gcc_update (gcc/config/rs6000/rs6000-tables.opt): New dependencies. · f10d3ac9
      Joseph Myers authored
      contrib:
      	* gcc_update (gcc/config/rs6000/rs6000-tables.opt): New
      	dependencies.
      
      gcc:
      	* config/rs6000/genopt.sh, config/rs6000/rs6000-cpus.def: New
      	files.
      	* config/rs6000/rs6000-tables.opt: New file (generated).
      	* config.gcc (powerpc*-*-*, rs6000*-*-*): Add
      	rs6000/rs6000-tables.opt to extra_options.
      	* config/rs6000/rs6000-opts.h (RS6000_CPU_OPTION_NATIVE): Define.
      	* config/rs6000/rs6000.c (rs6000_select): Remove.
      	(processor_target_table): Move contents to rs6000-cpus.def.
      	(darwin_rs6000_override_options): Check
      	global_options_set.x_rs6000_cpu_index instead of
      	rs6000_select[1].string.
      	(rs6000_option_override_internal): Likewise.
      	(rs6000_handle_option): Don't assert that global structures are in
      	use.  Don't handle OPT_mcpu_ and OPT_mtune_ here.
      	(rs6000_default_cpu): New variable.
      	(rs6000_file_start): Set it instead of local default_cpu.  Check
      	rs6000_default_cpu, global_options_set.x_rs6000_cpu_index and
      	global_options_set.x_rs6000_tune_index instead of rs6000_select.
      	(rs6000_darwin_file_start): Check rs6000_default_cpu and
      	global_options_set.x_rs6000_cpu_index instead of rs6000_select.
      	* config/rs6000/rs6000.h (struct rs6000_cpu_select,
      	rs6000_select): Remove.
      	* config/rs6000/rs6000.opt (rs6000_cpu_index, rs6000_tune_index):
      	Remove.
      	(mcpu=, mtune=): Use Var, Init, Enum and Save.
      	* config/rs6000/t-rs6000
      	($(srcdir)/config/rs6000/rs6000-tables.opt): New.
      	* config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Check
      	global_options_set.x_rs6000_cpu_index instead of
      	rs6000_select[1].string.
      	* config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Check
      	global_options_set.x_rs6000_cpu_index instead of
      	rs6000_select[1].string.
      
      From-SVN: r173620
      f10d3ac9
  14. May 09, 2011
    • Joseph Myers's avatar
      gcc_update (gcc/config/mips/mips-tables.opt): New dependencies. · d371df6f
      Joseph Myers authored
      contrib:
      	* gcc_update (gcc/config/mips/mips-tables.opt): New dependencies.
      
      gcc:
      	* config/mips/genopt.sh, config/mips/mips-cpus.def: New files.
      	* config/mips/mips-tables.opt: New file (generated).
      	* config.gcc (mips*-*-*): Add mips/mips-tables.opt to
      	extra_options.
      	* config/mips/mips-opts.h (MIPS_ARCH_OPTION_FROM_ABI,
      	MIPS_ARCH_OPTION_NATIVE): Define.
      	* config/mips/mips.c (mips_cpu_info_table): Move contents to
      	mips-cpus.def.
      	(mips_strict_matching_cpu_name_p, mips_matching_cpu_name_p,
      	mips_parse_cpu): Remove.
      	(mips_cpu_info_from_opt, mips_default_arch): New.
      	(mips_handle_option): Don't assert that global structures are in
      	use.  Don't handle OPT_march_, OPT_mtune_ and OPT_mips here.
      	(mips_option_override): Use new variables and functions to set
      	state of these options.  Use strcmp to check for individual CPU
      	names.
      	* config/mips/mips.h (MIPS_CPU_STRING_DEFAULT): Remove default
      	definition.
      	* config/mips/mips.opt (march=): Use ToLower and Enum.
      	(mips): Use ToLower, Enum and Var.
      	(mtune=): Use ToLower and Enum.
      	* config/mips/t-mips ($(srcdir)/config/mips/mips-tables.opt): New.
      
      From-SVN: r173561
      d371df6f
  15. May 02, 2011
    • Joseph Myers's avatar
      gcc_update (gcc/config/m68k/m68k-tables.opt): New dependencies. · 47c94d21
      Joseph Myers authored
      contrib:
      	* gcc_update (gcc/config/m68k/m68k-tables.opt): New dependencies.
      
      gcc:
      	* config/m68k/genopt.sh, config/m68k/m68k-isas.def,
      	config/m68k/m68k-microarchs.def, config/m68k/m68k-opts.h,
      	config/m68k/t-opts: New files.
      	* config/m68k/m68k-tables.opt: New file (generated).
      	* config.gcc (fido-*-*, m68k-*-*): Add m68k/m68k-tables.opt to
      	extra_options and m68k/t-opts to tmake_file.
      	* config/m68k/m68k.c (m68k_library_id_string): More to m68k.opt.
      	(all_isas): Initialize using m68k-isas.def.
      	(all_microarchs): Initialize using m68k-microarchs.def.
      	(m68k_find_selection): Remove.
      	(m68k_handle_option): Don't assert that global structures are in
      	use.  Use error_at.  Access variables via opts pointer.  Don't
      	handle -march=, -mcpu= and -mtune= here.  Set gcc_options fields
      	directly for -m68020-40 and -m68020-60.
      	(m68k_option_override): Set m68k_arch_entry, m68k_cpu_entry and
      	m68k_tune_entry here.
      	* config/m68k/m68k.h (enum uarch_type, enum target_device): Move
      	to m68k-opts.h.
      	(m68k_library_id_string): Remove declaration.
      	* config/m68k/m68k.opt (config/m68k/m68k-opts.h): New
      	HeaderInclude.
      	(m68k_library_id_string): New Variable.
      	(march=, mcpu=, mtune=): Use Enum and Var.
      
      From-SVN: r173256
      47c94d21
  16. Apr 08, 2011
    • Joseph Myers's avatar
      gcc_update (gcc/config/arm/arm-tables.opt): New dependencies. · ad7be009
      Joseph Myers authored
      contrib:
      	* gcc_update (gcc/config/arm/arm-tables.opt): New dependencies.
      
      gcc:
      	* config.gcc (arm*-*-*): Add arm/arm-tables.opt to extra_options.
      	* config/arm/arm-arches.def: New.
      	* config/arm/arm-opts.h: New.
      	* config/arm/genopt.sh: New.
      	* config/arm/arm-tables.opt: New (generated).
      	* config/arm/arm.c (arm_handle_option, arm_target_help,
      	TARGET_HANDLE_OPTION, TARGET_HELP, arm_find_cpu): Remove.
      	(all_architectures): Get most table contents from arm-arches.def.
      	(arm_option_override): Set arm_selected_arch, arm_selected_cpu and
      	arm_selected_tune here.
      	* config/arm/arm.h (enum processor_type): Move to arm-opts.h.
      	* config/arm/arm.opt (config/arm/arm-opts.h): New HeaderInclude.
      	(march=, mcpu=, mtune=): Use Enum and Var.
      	* config/arm/t-arm ($(srcdir)/config/arm/arm-tables.opt): New.
      	(arm.o): Update dependencies.
      
      From-SVN: r172205
      ad7be009
  17. Oct 12, 2010
  18. Sep 13, 2010
  19. Jun 15, 2010
  20. Apr 22, 2010
  21. Oct 03, 2009
  22. Aug 23, 2007
  23. Aug 16, 2007
  24. Jun 30, 2007
  25. Feb 09, 2007
  26. Jan 24, 2006
  27. Jan 18, 2006
    • Diego Novillo's avatar
      [multiple changes] · 953ff289
      Diego Novillo authored
      2006-01-18  Richard Henderson  <rth@redhat.com>
      	    Jakub Jelinek  <jakub@redhat.com>
                  Diego Novillo  <dnovillo@redhat.com>
      
      	* libgomp: New directory.
      	* Makefile.def: Add target_module libgomp.
      	* Makefile.in: Regenerate.
      	* configure.in (target_libraries): Add target-libgomp.
      	* configure: Regenerate.
      
      
      contrib/
      
      2006-01-18  Richard Henderson  <rth@redhat.com>
                  Diego Novillo  <dnovillo@redhat.com>
      
      	* gcc_update (files_and_dependencies): Add libgomp files.
      
      
      gcc/
      
      2006-01-18  Richard Henderson  <rth@redhat.com>
                  Aldy Hernandez  <aldyh@redhat.com>
      	    Jakub Jelinek  <jakub@redhat.com>
                  Diego Novillo  <dnovillo@redhat.com>
      
      	* omp-low.c: New file.
      	* c-omp.c: New file.
      
      2006-01-18  Richard Henderson  <rth@redhat.com>
      	    Jakub Jelinek  <jakub@redhat.com>
                  Diego Novillo  <dnovillo@redhat.com>
      
      	* doc/invoke.texi: Document -fopenmp.
      	* tree-dump.h (debug_function): Declare.
      
      	* hooks.c (hook_bool_tree_bool_false): New function.
      	(hook_tree_tree_null): Remove.
      	(hook_tree_tree_tree_null): New.
      	* hooks.h: Update to match.
      
      	* tree-pretty-print.c (debug_tree_chain): New.
      	(print_generic_expr): Handle TDF_CHAIN.
      	(dump_generic_node): Handle BLOCK.
      	Do not abort with incomplete SWITCH_EXPRs.
      	Do not dump body of an OpenMP directive if TDF_SLIM is given.
      	<case OMP_PARALLEL, OMP_FOR, OMP_SECTIONS>: Don't
      	print space after directive name.
      	<OMP_FOR>: Handle printing OMP_FOR_PRE_BODY.
      	Handle OMP_MASTER and OMP_ORDERED.
      	Handle printing of OMP_BODY just in one place, goto
      	dump_omp_body in the rest of OMP_* nodes that have
      	OMP_BODY.
      	Don't handle clause nodes here.  Update omp statements to
      	use dump_omp_clauses.
      	Handle OMP_SINGLE, OMP_SECTIONS, OMP_SECTION,
      	OMP_CLAUSE_ORDERED, OMP_CLAUSE_SCHEDULE, OMP_ATOMIC,
      	OMP_CRITICAL, OMP_CLAUSE_NOWAIT, GOMP_CLAUSE_IF,
      	GOMP_CLAUSE_NUM_THREADS, GOMP_FOR, GOMP_CLAUSE_SHARED,
      	GOMP_CLAUSE_FIRSTPRIVATE, GOMP_CLAUSE_LASTPRIVATE,
      	GOMP_CLAUSE_COPYIN and GOMP_CLAUSE_COPYPRIVATE.
      	Adjust output for GOMP_PARALLEL.
      	(dump_omp_clauses): New.
      	(print_declaration): Dump DECL_VALUE_EXPR.
      	(op_symbol_1): Split out of op_symbol.
      	(dumping_stmts): Remove.  Update all users.
      
      	* cgraph.c (cgraph_analyze_queue): New.
      	(cgraph_add_new_function): New.
      	* cgraph.h (cgraph_analyze_queue): Declare.
      	(cgraph_add_new_function): Declare.
      	(cgraph_lower_function): Remove.
      
      	* tree.c (walk_tree): Walk OMP_CLAUSE_CHAIN of OMP_CLAUSE_*
      	nodes.  Use switch for all nodes, handle most of IS_EXPR_CODE_CLASS
      	and TYPE_P nodes in its default clause.
      	(empty_body_p): New.
      	(tree_range_check_failed): New.
      	(build5_stat): New.
      
      	* tree.h (OMP_CLAUSE_REDUCTION_INIT,
      	OMP_CLAUSE_REDUCTION_MERGE,
      	OMP_CLAUSE_REDUCTION_PLACEHOLDER,
      	OMP_CLAUSE_PRIVATE_DEBUG,
      	OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE, OMP_FOR_PRE_BODY,
      	OMP_MASTER_BODY, OMP_ORDERED_BODY OMP_BODY,
      	OMP_CLAUSES, OMP_CLAUSE_DECL, OMP_CLAUSE_DEFAULT_KIND,
      	OMP_CLAUSE_CHAIN, OMP_CLAUSE_OUTER_DECL,
      	OMP_CLAUSE_INNER_DECL, OMP_CLAUSE_NUM_THREADS_EXPR,
      	OMP_CLAUSE_IF_EXPR, OMP_CLAUSE_SCHEDULE_CHUNK_EXPR,
      	OMP_CLAUSE_SCHEDULE_CHUNK_SIZE. OMP_PARALLEL_VAR_INIT,
      	OMP_PARALLEL_VAR_REDUC, OMP_FOR_VAR_INIT,
      	OMP_FOR_VAR_LAST, OMP_FOR_VAR_REDUC,
      	OMP_SECTIONS_VAR_INIT, OMP_SECTIONS_VAR_LAST,
      	OMP_SECTIONS_VAR_REDUC, OMP_CLAUSE_REDUCTION_CODE
      	OMP_SINGLE_CLAUSES, OMP_SINGLE_BODY,
      	OMP_CLAUSE_SCHEDULE_CHUNK_SIZE, OMP_SECTION_BODY,
      	OMP_CRITICAL_NAME, OMP_CRITICAL_BODY): New.
      	(TREE_RANGE_CHECK): New.
      	(empty_body_p): Declare.
      	(enum omp_clause_default_kind): New.
      	(build_string_literal): Declare.
      	(enum omp_clause_schedule_kind, OMP_CLAUSE_SCHEDULE_KIND): New.
      	(build5_stat, build5): Declare.
      
      	* tree-pass.h (TDF_CHAIN): Define.
      	* tree-pass.h (PROP_gimple_lomp): Define.
      	(pass_lower_omp): Declare.
      
      	* diagnostic.h (debug_tree_chain): Declare.
      
      	* builtins.c (get_builtin_sync_mode): Use 0 as last argument to
      	mode_for_size.
      	(expand_builtin): Handle sync BUILT_IN_*_16 builtins.
      	* builtins.c (build_string_literal): Make extern.
      
      	* gcc.c (include_spec_function): New.
      	(static_spec_functions): Add it.
      	(main): Move load of libgomp.spec ...
      	(LINK_COMMAND_SPEC): ... here.
      	(link_gomp_spec): New.
      	(static_specs): Include it.
      	(LINK_COMMAND_SPEC): Add link_gomp.
      	(GOMP_SELF_SPECS): New.
      	(driver_self_specs): Include it.
      	(switch_matches): Don't mark inline.
      	(main): Load libgomp.spec.
      
      	* tree-gimple.c (is_gimple_stmt): True for OMP_MASTER,
      	OMP_ORDERED, OMP_CRITICAL, OMP_SECTIONS, OMP_SECTION,
      	and OMP_SINGLE, OMP_FOR and OMP_PARALLEL.
      
      	* tree-gimple.h (enum omp_parallel): Declare.
      	(determine_parallel_type): Declare.
      	(omp_firstprivatize_variable): Declare.
      	(omp_reduction_init): Declare.
      	(diagnose_omp_structured_block_errors): Declare.
      	(struct walk_stmt_info): Add want_return_expr.
      	(struct walk_stmt_info): Add want_bind_expr, want_locations.
      	(find_omp_clause): Declare.
      	(insert_field_into_struct): Declare.
      	(struct walk_stmt_info): Move from tree-nested.c
      	(walk_stmts): Declare.
      
      	* c-cppbuiltin.c (c_cpp_builtins): If -fopenmp, #define _OPENMP
      	to 200505.
      
      	* cgraphunit.c (cgraph_lower_function): Make static.
      	(cgraph_finalize_pending_functions): New.
      	(cgraph_finalize_function): Call it.
      	(cgraph_finalize_compilation_unit): Likewise.
      
      	* builtin-types.def (BT_I16, BT_FN_I16_VPTR_I16,
      	BT_FN_BOOL_VPTR_I16_I16, BT_FN_I16_VPTR_I16_I16): Add.
      	(BT_FN_UINT_UINT): New.
      	(DEF_FUNCTION_TYPE_6, DEF_FUNCTION_TYPE_7,
      	DEF_FUNCTION_TYPE_VAR_4): Document.
      	(BT_PTR_LONG, BT_PTR_PTR, BT_FN_BOOL, BT_FN_INT,
      	BT_FN_VOID_PTRPTR, BT_PTR_FN_VOID_PTR,
      	BT_FN_BOOL_LONGPTR_LONGPTR, BT_FN_VOID_OMPFN_PTR_UINT,
      	BT_FN_VOID_OMPFN_PTR_UINT_UINT,
      	BT_FN_BOOL_LONG_LONG_LONG_LONGPTR_LONGPTR,
      	BT_FN_BOOL_LONG_LONG_LONG_LONG_LONGPTR_LONGPTR,
      	BT_FN_VOID_OMPFN_PTR_UINT_LONG_LONG_LONG,
      	BT_FN_VOID_OMPFN_PTR_UINT_LONG_LONG_LONG_LONG): New.
      
      	* builtins.def: Update DEF_BUILTIN comment to include COND argument.
      	Move all DEF_SYNC_BUILTIN () and DEF_GOMP_BUILTIN () builtins
      	into separate files.
      	(DEF_GOMP_BUILTIN): New.
      	(BUILT_IN_OMP_GET_THREAD_NUM, BUILT_IN_GOMP_BARRIER,
      	BUILT_IN_GOMP_CRITICAL_START, BUILT_IN_GOMP_CRITICAL_END,
      	BUILT_IN_GOMP_CRITICAL_NAME_START, BUILT_IN_GOMP_CRITICAL_NAME_END,
      	BUILT_IN_GOMP_LOOP_STATIC_START, BUILT_IN_GOMP_LOOP_DYNAMIC_START,
      	BUILT_IN_GOMP_LOOP_GUIDED_START, BUILT_IN_GOMP_LOOP_RUNTIME_START,
      	BUILT_IN_GOMP_LOOP_ORDERED_STATIC_START,
      	BUILT_IN_GOMP_LOOP_ORDERED_DYNAMIC_START,
      	BUILT_IN_GOMP_LOOP_ORDERED_GUIDED_START,
      	BUILT_IN_GOMP_LOOP_ORDERED_RUNTIME_START,
      	BUILT_IN_GOMP_LOOP_STATIC_NEXT, BUILT_IN_GOMP_LOOP_DYNAMIC_NEXT,
      	BUILT_IN_GOMP_LOOP_GUIDED_NEXT, BUILT_IN_GOMP_LOOP_RUNTIME_NEXT,
      	BUILT_IN_GOMP_LOOP_ORDERED_STATIC_NEXT,
      	BUILT_IN_GOMP_LOOP_ORDERED_DYNAMIC_NEXT,
      	BUILT_IN_GOMP_LOOP_ORDERED_GUIDED_NEXT,
      	BUILT_IN_GOMP_LOOP_ORDERED_RUNTIME_NEXT,
      	BUILT_IN_GOMP_PARALLEL_LOOP_STATIC_START,
      	BUILT_IN_GOMP_PARALLEL_LOOP_DYNAMIC_START,
      	BUILT_IN_GOMP_PARALLEL_LOOP_GUIDED_START,
      	BUILT_IN_GOMP_PARALLEL_LOOP_RUNTIME_START,
      	BUILT_IN_GOMP_LOOP_END, BUILT_IN_GOMP_LOOP_END_NOWAIT,
      	BUILT_IN_GOMP_ORDERED_START, BUILT_IN_GOMP_ORDERED_END,
      	BUILT_IN_GOMP_PARALLEL_START, BUILT_IN_GOMP_PARALLEL_END,
      	BUILT_IN_GOMP_SECTIONS_START, BUILT_IN_GOMP_SECTIONS_NEXT,
      	BUILT_IN_GOMP_PARALLEL_SECTIONS_START, BUILT_IN_GOMP_SECTIONS_END,
      	BUILT_IN_GOMP_SECTIONS_END_NOWAIT, BUILT_IN_GOMP_SINGLE_START,
      	BUILT_IN_GOMP_SINGLE_COPY_START, BUILT_IN_GOMP_SINGLE_COPY_END): New.
      	* sync-builtins.def: New file, moved from builtins.def.
      	* omp-builtins.def: New file, moved from builtins.def.
      
      	* c-objc-common.h (LANG_HOOKS_OMP_PREDETERMINED_SHARING): Redefine.
      
      	* gimple-low.c (lower_function_body): Clear data.
      	(lower_stmt): Do not handle COMPOUND_EXPR.
      	Remove call to print_node_brief.
      
      	* c-tree.h (c_finish_omp_clauses): New prototype.
      	(C_DECL_THREADPRIVATE_P): Define.
      	(lookup_name_no_remap, c_omp_remap_private): Remove
      	(c_begin_omp_parallel, c_finish_omp_parallel): Update.
      	(check_for_loop_decls): Update decl.
      	(lookup_name_no_remap, c_omp_remap_private): Declare.
      	(build_indirect_ref, build_modify_expr, pushdecl,
      	pushdecl_top_level): Move to c-common.h.
      
      	* dwarf2out.c (loc_descriptor_from_tree_1): Don't set unsignedp
      	before the switch, but just in the 2 places that need it.
      
      	* c-decl.c (diagnose_mismatched_decls): Do not check for
      	mismatched thread-local attributes when OLDDECL is marked
      	threadprivate and NEWDECL has no thread-local attributes.
      	(merge_decls): Merge C_DECL_THREADPRIVATE_P.
      	(c_gimple_diagnostics_recursively): Rename from
      	c_warn_unused_result_recursively.  Invoke
      	diagnose_omp_structured_block_errors.
      	(check_for_loop_decls): Return a singular decl found.
      
      	* langhooks.c (lhd_omp_predetermined_sharing): Return
      	OMP_CLAUSE_DEFAULT_SHARED for DECL_ARTIFICIAL decls.
      	(lhd_omp_firstprivatize_type_sizes): New.
      	(lhd_omp_assignment): New.
      	(lhd_omp_predetermined_sharing): New.
      
      	* langhooks.h (struct gimplify_omp_ctx): Forward declare.
      	(struct lang_hooks_for_types): Add
      	omp_firstprivatize_type_sizes, omp_privatize_by_reference,
      	omp_predetermined_sharing, omp_disregard_value_expr,
      	omp_private_debug_clause, omp_clause_default_ctor,
      	omp_clause_copy_ctor, omp_clause_assign_op, omp_clause_dtor.
      
      	(c_finish_omp_clauses): New.
      	(c_finish_bc_stmt): Diagnose break within omp for.
      	(c_begin_omp_parallel, c_finish_omp_parallel): New.
      	(build_unary_op): Return error_mark after reporting
      	a readonly_error.
      	(build_modify_expr): Likewise.
      
      	* gimplify.c: Include optabs.h and pointer-set.h.
      	(enum gimplify_omp_var_data): Declare.
      	(struct gimplify_omp_ctx): Declare.
      	(struct gimplify_ctx): Add fields prev_context, combined_pre_p
      	and combined_ctxp.
      	(gimplify_ctxp, gimplify_omp_ctxp): New local variables.
      	(push_gimplify_context, pop_gimplify_context): Allow nesting.
      	(splay_tree_compare_decl_uid): New.
      	(new_omp_context): New.
      	(delete_omp_context): New.
      	(gimple_add_tmp_var): Call omp_add_variable.
      	(gimplify_bind_expr): Likewise.
      	(gimplify_var_or_parm_decl): If omp_notice_variable returned
      	true, disregard DECL_VALUE_EXPR on the decl if any.
      	(gimplify_expr_in_ctx): New.
      	(omp_firstprivatize_variable, omp_firstprivatize_type_sizes
      	omp_add_variable, omp_notice_variable, omp_is_private
      	gimplify_scan_omp_clauses, gimplify_adjust_omp_clauses_1
      	gimplify_adjust_omp_clauses, gimplify_omp_parallel
      	gimplify_omp_for, gimplify_omp_workshare, goa_lhs_expr_p
      	gimplify_omp_atomic_fetch_op, goa_stabilize_expr
      	gimplify_omp_atomic_pipeline, gimplify_omp_atomic_mutex
      	gimplify_omp_atomic): New.
      	(gimplify_expr): Handle OMP_PARALLEL, OMP_FOR, OMP_SECTIONS,
      	OMP_SINGLE, OMP_SECTION, OMP_MASTER, OMP_ORDERED,
      	OMP_CRITICAL and OMP_ATOMIC.
      	(gimplify_body): Verify gimplify_ctxp is empty after gimplification.
      
      	* c-pragma.h (enum pragma_kind): Add
      	PRAGMA_OMP_ATOMIC, PRAGMA_OMP_BARRIER,
      	PRAGMA_OMP_CRITICAL, PRAGMA_OMP_FLUSH, PRAGMA_OMP_FOR,
      	PRAGMA_OMP_MASTER, PRAGMA_OMP_ORDERED,
      	PRAGMA_OMP_PARALLEL, PRAGMA_OMP_PARALLEL_FOR,
      	PRAGMA_OMP_PARALLEL_SECTIONS, PRAGMA_OMP_SECTION,
      	PRAGMA_OMP_SECTIONS, PRAGMA_OMP_SINGLE,
      	PRAGMA_OMP_THREADPRIVATE.
      
      	* tree.def (OMP_PARALLEL, OMP_FOR, OMP_SECTIONS,
      	OMP_SINGLE, OMP_SECTION, OMP_MASTER, OMP_ORDERED,
      	OMP_CRITICAL, OMP_ATOMIC, OMP_CLAUSE_PRIVATE,
      	OMP_CLAUSE_SHARED, OMP_CLAUSE_FIRSTPRIVATE,
      	OMP_CLAUSE_LASTPRIVATE, OMP_CLAUSE_REDUCTION,
      	OMP_CLAUSE_COPYIN, OMP_CLAUSE_COPYPRIVATE,
      	OMP_CLAUSE_IF, OMP_CLAUSE_NUM_THREADS,
      	OMP_CLAUSE_SCHEDULE, OMP_CLAUSE_NOWAIT,
      	OMP_CLAUSE_ORDERED, OMP_CLAUSE_DEFAULT): Define.
      
      	* print-tree.c (print_node): Dump DECL_VALUE_EXPR.
      
      	* tree-ssa-dce.c (find_control_dependence): Do not assume that
      	ENTRY_BLOCK_PTR->next_bb == single_succ (ENTRY_BLOCK_PTR).
      
      	* tree-nested.c (convert_call_expr): Call walk_body on OMP_BODY for
      	OpenMP directives.
      	(struct nesting_info): Add field_map,
      	suppress_expansion, debug_var_chain.
      	(create_nesting_tree): Initialize them.
      	(lookup_field_for_decl): Use field_map.
      	(get_nonlocal_debug_decl, get_local_debug_decl): New.
      	(convert_local_omp_clauses): New.
      	(finalize_nesting_tree_1): Add debug_var_chain to toplevel block.
      	(walk_body): Split out of walk_function.
      	(convert_nonlocal_omp_clauses, convert_local_omp_clauses): New.
      	(convert_nonlocal_reference): Handle omp statements.
      	(convert_local_reference): Likewise.
      	(unnest_nesting_tree_1): Split out of finalize_nesting_tree_1.
      	(unnest_nesting_tree): New.
      	(lower_nested_functions): Call it.
      	(insert_field_into_struct): Make extern.
      	(struct walk_stmt_info): Move to tree-gimple.h.
      	(walk_stmts): Make extern.
      
      	* omp-builtins.def: New file.
      
      	* tree-iterator.c (expr_only): Clarify comment.
      
      	* c-common.h (pushdecl_top_level, pushdecl,
      	build_modify_expr, build_indirect_ref,
      	c_finish_omp_master, c_finish_omp_critical,
      	c_finish_omp_ordered, c_finish_omp_barrier,
      	c_finish_omp_atomic, c_finish_omp_flush,
      	c_finish_omp_for, c_split_parallel_clauses,
      	omp_clause_default_kind, c_omp_sharing_predetermined,
      	c_omp_remap_decl): Declare.
      
      	* Makefile.in (BUILTINS_DEF): Add omp-builtins.def.
      	(OBJS-common): Add omp-low.o.
      	(c-omp.o, omp-low.o): Add.
      	(gimplify.o): Add dependency on $(OPTABS_H).
      	(GTFILES): Add omp-low.c.
      	(gt-stringpool.h): Add.
      
      	* tree-cfg.c (set_bb_for_stmt): Do not update the
      	block-to-labels map if we are currently expanding to RTL.
      	(tree_node_can_be_shared): Remove unnecessary CONSTANT_CLASS_P
      	checks.
      	Handle IDENTIFIER_NODE.
      	(tree_verify_flow_info): Do not ICE when emitting error
      	messages about invalid labels.
      	(dump_function_to_file): Reset CFUN before emitting the body
      	of the function.
      	(debug_function): New.
      
      	* passes.c (init_optimization_passes): Schedule
      	pass_lower_omp.
      
      	* langhooks-def.h (lhd_omp_predetermined_sharing,
      	lhd_omp_assignment, lhd_omp_firstprivatize_type_sizes):
      	Declare.
      	(LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES): Define.
      	(LANG_HOOKS_FOR_TYPES_INITIALIZER): Use it.
      	(LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE,
      	LANG_HOOKS_OMP_PREDETERMINED_SHARING,
      	LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR,
      	LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE,
      	LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR,
      	LANG_HOOKS_OMP_CLAUSE_COPY_CTOR,
      	LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP,
      	LANG_HOOKS_OMP_CLAUSE_DTOR): Define.
      	(LANG_HOOK_DECLS): Use them.
      
      
      2006-01-18  Dmitry Kurochkin <dmitry.kurochkin@gmail.com>
      	    Richard Henderson  <rth@redhat.com>
      	    Jakub Jelinek  <jakub@redhat.com>
                  Diego Novillo  <dnovillo@redhat.com>
      
      	* c-parser.c (pragma_omp_clause): Define.
      	(c_parser_declaration_or_fndef): Document OpenMP syntax.
      	(c_parser_compound_statement): Likewise.
      	(c_parser_statement): Likewise.
      	(c_parser_pragma): Handle omp pragmas.
      	(OMP_FOR_CLAUSE_MASK, OMP_SECTIONS_CLAUSE_MASK,
      	OMP_PARALLEL_CLAUSE_MASK, OMP_SINGLE_CLAUSE_MASK): Define.
      	(c_parser_omp_clause_name, check_no_duplicate_clause,
      	c_parser_omp_variable_list,
      	c_parser_omp_var_list_parens, c_parser_omp_clause_copyin,
      	c_parser_omp_clause_copyprivate,
      	c_parser_omp_clause_default,
      	c_parser_omp_clause_firstprivate, c_parser_omp_clause_if,
      	c_parser_omp_clause_lastprivate,
      	c_parser_omp_clause_nowait,
      	c_parser_omp_clause_num_threads,
      	c_parser_omp_clause_ordered, c_parser_omp_clause_private,
      	c_parser_omp_clause_reduction,
      	c_parser_omp_clause_schedule, c_parser_omp_clause_shared,
      	c_parser_omp_all_clauses, c_parser_omp_structured_block,
      	c_parser_omp_atomic, c_parser_omp_barrier,
      	c_parser_omp_critical, c_parser_omp_flush,
      	c_parser_omp_for_loop, c_parser_omp_for,
      	c_parser_omp_master, c_parser_omp_ordered,
      	c_parser_omp_sections_scope, c_parser_omp_sections,
      	c_parser_omp_parallel, c_parser_omp_single,
      	c_parser_omp_construct, c_parser_omp_threadprivate): New.
      	* c-pragma.c (init_pragma): Do omp pragma registration here.
      	* c.opt (fopenmp): New flag.
      
      
      2006-01-18  Eric Christopher  <echristo@apple.com>
      
      	* gcc.c (GOMP_SELF_SPECS): Bracket in #ifndef/#endif.
      	* config/darwin.h (GOMP_SELF_SPECS): Define.
      
      
      testsuite/
      
      2006-01-18  Richard Henderson  <rth@redhat.com>
                  Aldy Hernandez  <aldyh@redhat.com>
      	    Jakub Jelinek  <jakub@redhat.com>
                  Diego Novillo  <dnovillo@redhat.com>
                  Uros Bizjak  <uros@kss-loka.si>
      
      	* testsuite/gcc.dg/gomp: New directory.
      
      From-SVN: r109902
      953ff289
  28. Nov 01, 2005
  29. Oct 29, 2005
  30. Oct 28, 2005
  31. Aug 23, 2005
  32. Mar 19, 2005
  33. Mar 18, 2005
  34. Nov 20, 2004
  35. Nov 14, 2004
  36. Nov 05, 2004
  37. Aug 31, 2004
    • Paolo Bonzini's avatar
      Made fixincludes a toplevel build module. · 71b5d516
      Paolo Bonzini authored
      toplevel:
      2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
      
      	* Makefile.def (build_modules): Add fixincludes.
      	(dependencies): Make gcc depend on fixincludes.
      	* configure.in (build_tools): Add fixincludes.
      	(build_configdirs): Always include build_libs.
      	* Makefile.in: Regenerate.
      	* configure: Regenerate.
      
      contrib:
      2004-08-04  Paolo Bonzini  <bonzini@gnu.org>
      
      	* gcc_update: Add fixincludes.
      
      fixincludes:
      2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
      
      	* .cvsignore: New.
      	* Makefile.in: From gcc/fixinc/Makefile.in, making it fully
      	autoconfiscated.
      	* configure.ac: New.
      	* config.h.in: Generate.
      	* configure: Generate.
      	* aclocal.m4: New.
      	* fixlib.h: Remove inclusions of gcc files.
      	* system.h: New.
      
      	Other files copied from gcc/fixinc.
      
      gcc:
      2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
      
      	* Makefile.in (build_subdir): New substitution.
      	(fixinc.sh): Simplify heavily since fixincludes is already built.
      	(stmp-fixinc): Depend on specs.ready.
      	(install-mkheaders): Use new location of fixincludes.
      	(clean): Do not descend into fixinc.
      	(FORBUILD): Replace with ../$(build_subdir).
      	* configure.ac (build_subdir): Substitute.
      	(FORBUILD): Do not set.
      	(all_outputs): Remove fixinc/Makefile.
      	(default commands): Do not create links in fixinc.
      	* mkfixinc.sh: New, from fixinc/mkfixinc.sh without
      	the fixincludes configuration steps and substituting
      	@FIXINCL@ in fixinc.in.
      	* fixinc.in: New, from fixinc/fixincl.sh.
      
      	* fixinc/*: Removed.
      
      From-SVN: r86824
      71b5d516
Loading