gcc/gcc/testsuite
Josh Conner 7816b87eb1 re PR middle-end/29683 (Arg split between stack/regs can cause stack corruption)
2007-03-01  Josh Conner  <jconner@apple.com>

	PR middle-end/29683
	* calls.c (compute_argument_addresses): Set stack and stack_slot
	for partial args, too.
	(store_one_arg): Use locate.size.constant for the size when
	generating a save_area.

2007-03-01  Josh Conner  <jconner@apple.com>

	PR middle-end/29683
	* gcc.dg/pr29683.c: New.

From-SVN: r120425
2007-01-04 01:37:15 +00:00
..
ada/acats re PR ada/18817 (ACATS c380004 fails at run time) 2006-09-15 08:59:02 +00:00
config
g++.dg re PR c++/28217 (ICE in tree_int_cst_sgn) 2007-01-04 00:53:18 +01:00
g++.old-deja p11144.C: Renamed id to ID because id is an OjbC keyword. 2006-12-19 00:31:39 +00:00
gcc.c-torture re PR target/20353 (uclibc does not provide C99 math functions) 2007-01-03 15:00:40 -08:00
gcc.dg re PR middle-end/29683 (Arg split between stack/regs can cause stack corruption) 2007-01-04 01:37:15 +00:00
gcc.misc-tests config.gcc (i?86-*-darwin): Add 64-bit HWI support. 2006-09-09 00:27:47 +00:00
gcc.target vect.exp: Skip PowerPC targets not supporting -maltivec. 2007-01-03 21:55:24 +00:00
gcc.test-framework sourcebuild.texi (Test Directives): Add output-exists and output-exists-not. 2006-11-07 00:08:32 +00:00
gfortran.dg ibits.f90: New test. 2007-01-03 03:45:50 +00:00
gfortran.fortran-torture re PR fortran/30207 (ICE in gfc_dep_resolver with where (a < 0) a(:) = 1) 2006-12-17 18:28:07 +00:00
gnat.dg tree.c (walk_type_fields): Do not handle TYPE_MIN_VALUE and TYPE_MAX_VALUE for scalar types here but... 2006-12-04 07:47:32 +00:00
lib target-supports.exp (check_effective_target_powerpc_spe): New. 2007-01-01 12:56:08 +00:00
obj-c++.dg * obj-c++.dg/const-str-9.mm: Don't run on 64-bit. 2006-11-02 22:01:36 +00:00
objc [multiple changes] 2006-12-13 18:29:26 +01:00
objc.dg struct-layout-encoding-1_generate.c: Xfail some tests for powerpc-darwin and powerpc-aix. 2006-10-07 10:37:50 -07:00
treelang * treelang/compile/var_defs.tree: Adjust. 2006-12-07 16:48:11 +00:00
ChangeLog re PR middle-end/29683 (Arg split between stack/regs can cause stack corruption) 2007-01-04 01:37:15 +00:00
ChangeLog.tree-ssa
README
README.QMTEST
README.compat
README.gcc

README

This is a collection of tests for GCC. For further information about
the C testsuite, see README.gcc.

The driver that runs this testsuite is called DejaGnu and you will
need a current DejaGnu snapshot, which is available from
ftp://gcc.gnu.org/pub/gcc/infrastructure, for example.

These tests are included "as is". If any of them fails, do not report
a bug.  Bug reports for DejaGnu can go to bug-dejagnu@gnu.org.
Discussion and comments about this testsuite should be sent to
gcc@gcc.gnu.org; additions and changes to should go to sent to
gcc-patches@gcc.gnu.org.

The entire testsuite is invoked by `make check` at the top level of
the GCC tree. `make check-g++` runs the C++ testsuite only.

STRUCTURE OF THE G++ TESTSUITE

  g++.dg tests:

  All new tests should be placed in an appropriate subdirectory of g++.dg.

  g++.old-deja tests:

  g++.benjamin	Tests by Benjamin Koz
  g++.bob
  g++.brendan	Tests by Brendan Kehoe
  g++.bugs
  g++.eh  	Tests for exception handling
  g++.ext  	Tests for g++ extensions
  g++.gb  	Tests by Gerald Baumgartner
  g++.jason	Tests by Jason Merill
  g++.jeff	Tests by Jeffrey A Law
  g++.martin	Tests by Martin v. Löwis
  g++.mike	Tests by Mike Stump
  g++.niklas	Tests by Niklas Hallqvist
  g++.ns  	Tests for namespaces
  g++.other
  g++.pt  	Tests for templates
  g++.rfg
  g++.robertl	Tests from gcc-bugs@gcc.gnu.org, gathered by Robert Lipe
	
Finally, some random last minute notes by Mike Stump <mrs@cygnus.com>, on
how to run tests (in the GCC 2.7 era):

	runtest --tool g++ --srcdir ./testsuite

where 

	runtest	Is the name used to invoke DejaGnu.   If DejaGnu is not
		install this will be the relative path name for runtest.

	--tool	This tells DejaGnu which tool you are testing. It is
		mainly used to find the testsuite directories for a
		particular tool when several testsuites are in the
		same directory. (like the gcc and g++ testsuites)

	--srcdir This points to the top level of the directory
		containing the sources of the testsuite. This is
		./testsuite if you are in the directory that has the
		testsuite directory.