gcc/gcc/testsuite
Carlos O'Donell 9dfb66b9fe re PR c/26774 (Out of memory compiling 9-line Delta-reduced Linux kernel driver msp3400.c)
gcc/

2006-04-19  Carlos O'Donell  <carlos@codesourcery.com>
	    Nathan Sidwell  <nathan@codesourcery.com>

	PR c/26774
	* stor-layout.c (update_alignment_for_field): Do not align 
	ERROR_MARK nodes.
	(place_union_field): Place union field at the start of the union.
	(place_field): Move ERROR_MARK check later, and use the current
	allocation position to maintain monotonicity.

gcc/testsuite/

2006-04-19  Carlos O'Donell  <carlos@codesourcery.com>

	PR c/26774
	* gcc.dg/struct-parse-1.c: New test case.


Co-Authored-By: Nathan Sidwell <nathan@codesourcery.com>

From-SVN: r113107
2006-04-20 00:21:51 +00:00
..
ada/acats
config
g++.dg re PR c++/26558 (segfault on syntax error) 2006-04-19 22:03:24 +00:00
g++.old-deja re PR c++/26739 (ICE in g++.old-deja/g++.pt/friend36.C) 2006-04-19 18:07:19 +00:00
gcc.c-torture ifcvt.c (noce_emit_move_insn): Call store_bit_field if the resulting move would be an INSV insn. 2006-04-19 11:45:41 +00:00
gcc.dg re PR c/26774 (Out of memory compiling 9-line Delta-reduced Linux kernel driver msp3400.c) 2006-04-20 00:21:51 +00:00
gcc.misc-tests
gcc.target re PR target/24076 ((vector char){x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x} code gen is not that good) 2006-04-16 21:46:59 +00:00
gcc.test-framework
gfortran.dg parse.c (next_free): Use consistent error string between free-form and fixed-form for illegal... 2006-04-18 19:58:41 +02:00
gfortran.fortran-torture f95-lang.c (gfc_get_alias_set): New function. 2006-03-27 14:27:40 +02:00
lib target-supports.exp (check_effective_target_int32plus): New. 2006-04-13 19:14:25 -04:00
obj-c++.dg dwarf2out.c (is_c_family): Understand new DWARF3 language types. 2006-03-25 00:54:40 +00:00
objc
objc.dg Fixup whitespaces 2006-04-09 00:18:01 +00:00
treelang
ChangeLog re PR c/26774 (Out of memory compiling 9-line Delta-reduced Linux kernel driver msp3400.c) 2006-04-20 00:21:51 +00:00
ChangeLog.tree-ssa
README
README.compat
README.gcc
README.QMTEST

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.