diff options
author | Tobias Schlüter <tobi@gcc.gnu.org> | 2004-06-12 16:06:19 +0200 |
---|---|---|
committer | Tobias Schlüter <tobi@gcc.gnu.org> | 2004-06-12 16:06:19 +0200 |
commit | 662ef0f5c62f781c4d20406ee11333c63bac8eef (patch) | |
tree | 3f6f1f97c22b8ddc8b4db0231e42b95da118a586 /gcc | |
parent | 4aef80f8e0b9f3a18e2afb6d10dcdcc26683d34d (diff) | |
download | gcc-662ef0f5c62f781c4d20406ee11333c63bac8eef.zip gcc-662ef0f5c62f781c4d20406ee11333c63bac8eef.tar.gz gcc-662ef0f5c62f781c4d20406ee11333c63bac8eef.tar.bz2 |
re PR fortran/12841 (passing null to a subroutine)
fortran/
PR fortran/12841
* interface.c (compare_parameter, compare_actual_formal): Don't
check types and array shapes for NULL()
* trans-expr.c (conv_function_call): No double indirection for
NULL()
( I had accidentally committed the interface.c part before)
testuite/
PR fortran/12841
* gfortran.fortran-torture/execute/null_arg.f90: New test.
From-SVN: r83028
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/fortran/trans-decl.c | 2 | ||||
-rw-r--r-- | gcc/fortran/trans-expr.c | 6 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 5881 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.fortran-torture/execute/nullarg.f90 | 13 |
5 files changed, 41 insertions, 5869 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index a9f08c2..e7b63f7 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,11 @@ +2004-06-12 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de> + + PR fortran/12841 + * interface.c (compare_parameter, compare_actual_formal): Don't + check types and array shapes for NULL() + * trans-expr.c (conv_function_call): No double indirection for + NULL() + 2004-06-09 Toon Moene <toon@moene.indiv.nluug.nl> * trans-expr.c (gfc_conv_cst_int_power): Compute diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c index 1420737..9b11dd8 100644 --- a/gcc/fortran/trans-decl.c +++ b/gcc/fortran/trans-decl.c @@ -1923,7 +1923,7 @@ generate_local_decl (gfc_symbol * sym) /* warn for unused variables, but not if they're inside a common block. */ else if (warn_unused_variable && !sym->attr.in_common) - warning ("unused variable `%s'", sym->name); + warning ("unused variable `%s'", sym->name); } } diff --git a/gcc/fortran/trans-expr.c b/gcc/fortran/trans-expr.c index 2258ce6..e4953f6 100644 --- a/gcc/fortran/trans-expr.c +++ b/gcc/fortran/trans-expr.c @@ -1100,10 +1100,12 @@ gfc_conv_function_call (gfc_se * se, gfc_symbol * sym, if (argss == gfc_ss_terminator) { gfc_conv_expr_reference (&parmse, arg->expr); - if (formal && formal->sym->attr.pointer) + if (formal && formal->sym->attr.pointer + && arg->expr->expr_type != EXPR_NULL) { /* Scalar pointer dummy args require an extra level of - indirection. */ + indirection. The null pointer already contains + this level of indirection. */ parmse.expr = gfc_build_addr_expr (NULL, parmse.expr); } } diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8b00960..5fc9491 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-06-12 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de> + + PR fortran/12841 + * gfortran.fortran-torture/execute/null_arg.f90: New test. + 2004-06-12 Bud Davis <bdavis9659@comcast.net> * gfortran.fortran-torture/execute/getarg_1.f90: New test. @@ -5600,752 +5605,7 @@ * gcc.dg/compat/struct-align-2.h: New file. * gcc.dg/compat/struct-align-2_main.c: New file. * gcc.dg/compat/struct-align-2_x.c: New file. - * gcc.dg/compat/struct-align-2_y.c: New file. - - * gcc.dg/compat/compat-common.h (DEBUG_FINI): New. - * gcc.dg/compat/scalar-by-value-1_x.c: Use it. - * gcc.dg/compat/scalar-by-value-2_x.c: Ditto. - * gcc.dg/compat/scalar-by-value-3_x.c: Ditto. - * gcc.dg/compat/scalar-by-value-4_x.c: Ditto. - * gcc.dg/compat/scalar-return-1_x.c: Ditto. - * gcc.dg/compat/scalar-return-2_x.c: Ditto. - * gcc.dg/compat/scalar-return-3_x.c: Ditto. - * gcc.dg/compat/scalar-return-4_x.c: Ditto. - * gcc.dg/compat/struct-by-value-10_x.c: Ditto. - * gcc.dg/compat/struct-by-value-11_x.c: Ditto. - * gcc.dg/compat/struct-by-value-12_x.c: Ditto. - * gcc.dg/compat/struct-by-value-13_x.c: Ditto. - * gcc.dg/compat/struct-by-value-14_x.c: Ditto. - * gcc.dg/compat/struct-by-value-15_x.c: Ditto. - * gcc.dg/compat/struct-by-value-16_x.c: Ditto. - * gcc.dg/compat/struct-by-value-17_x.c: Ditto. - * gcc.dg/compat/struct-by-value-18_x.c: Ditto. - * gcc.dg/compat/struct-by-value-2_x.c: Ditto. - * gcc.dg/compat/struct-by-value-3_x.c: Ditto. - * gcc.dg/compat/struct-by-value-4_x.c: Ditto. - * gcc.dg/compat/struct-by-value-5_x.c: Ditto. - * gcc.dg/compat/struct-by-value-6_x.c: Ditto. - * gcc.dg/compat/struct-by-value-7_x.c: Ditto. - * gcc.dg/compat/struct-by-value-8_x.c: Ditto. - * gcc.dg/compat/struct-by-value-9_x.c: Ditto. - * gcc.dg/compat/struct-return-10_x.c: Ditto. - * gcc.dg/compat/struct-return-2_x.c: Ditto. - * gcc.dg/compat/struct-return-3_x.c: Ditto. - -2003-07-03 Eric Botcazou <ebotcazou@libertysurf.fr> - - * gcc.dg/i386-call-1.c: New test. - -2003-07-03 Nathan Sidwell <nathan@codesourcery.com> - - PR c++/9162 - * g++.dg/parse/defarg4.C: New. - -2003-07-03 Roger Sayle <roger@eyesopen.com> - - PR target/10700 - * gcc.c-torture/compile/20030703-1.c: New test case. - -2003-07-03 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/template/local3.C: Remove extra semicolon. - -2003-07-03 Eric Botcazou <ebotcazou@libertysurf.fr> - - * gcc.dg/i386-volatile-1.c: New test. - -2003-07-02 Nathan Sidwell <nathan@codesourcery.com> - - PR c++/11072 - * g++.dg/other/offsetof2.C: XFAIL. - * g++.dg/other/offsetof5.C: New. - - PR c++/10219 - * g++.dg/template/error1.C: New. - - PR c++/9779 - * g++.dg/template/dependent-expr1.C: New. - -2003-07-01 Mark Mitchell <mark@codesourcery.com> - - PR c++/6949 - * g++.dg/template/local3.C: New test. - - PR c++/11149 - * g++.dg/lookup/scoped6.C: New test. - -2003-07-01 Giovanni Bajo <giovannibajo@libero.it> - - PR c++/8046 - * g++.dg/other/error7.C: New test. - -2003-07-01 Kazu Hirata <kazu@cs.umass.edu> - - * g++.old-deja/g++.abi/vbase1.C: Fix comment typos. - * g++.old-deja/g++.abi/vtable3.h: Likewise. - * g++.old-deja/g++.law/code-gen5.C: Likewise. - * g++.old-deja/g++.other/union2.C: Likewise. - * gcc.dg/c90-const-expr-2.c: Likewise. - * gcc.dg/c90-const-expr-3.c: Likewise. - * gcc.dg/c99-const-expr-2.c: Likewise. - * gcc.dg/c99-const-expr-3.c: Likewise. - * gcc.dg/concat.c: Likewise. - -2003-07-01 Mark Mitchell <mark@codesourcery.com> - - PR c++/9559 - * g++.dg/init/static1.C: New test. - -2003-06-30 Volker Reichelt <reichelt@igpm.rwth-aachen.de> - - * g++.old-deja/g++.niklas/README: Fix spelling for "testcase". - * g++.old-deja/g++.other/access2.C: Likewise. - * g++.old-deja/g++.other/decl2.C: Likewise. - * gcc.c-torture/execute/20020615-1.c: Likewise. - -2003-06-30 Giovanni Bajo <giovannibajo@libero.it> - - PR c++/4933 - * g++.dg/template/sizeof4.C: New test. - -2003-06-30 Giovanni Bajo <giovannibajo@libero.it> - - * g++.dg/other/error6.C: New test. - -2003-06-30 Giovanni Bajo <giovannibajo@libero.it> - - PR c++/10750 - * g++.dg/parse/constant2.C: New test. - -2003-06-30 Giovanni Bajo <giovannibajo@libero.it> - - PR c++/11106 - * g++.dg/other/error5.C: New test. - -2003-06-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.dg/format/gcc_diag-1.c: New test. - -2003-06-28 Ulrich Weigand <uweigand@de.ibm.com> - - * gcc.c-torture/execute/multi-ix.c: Fix off-by-one bugs. - -2003-06-28 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.robertl/eb133.C: Set expected line number. - * g++.old-deja/g++.robertl/eb133a.C: Likewise. - * g++.old-deja/g++.robertl/eb133b.C: Likewise. - -2003-06-28 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/builtins/string-8.c: New test. - * gcc.c-torture/execute/builtins/string-8-lib.c: New. - * gcc.c-torture/execute/stdio-opt-1.c (main): Add new tests. - * gcc.c-torture/execute/string-opt-7.c (main): Add new test. - -2003-06-27 Mark Mitchell <mark@codesourcery.com> - - PR c++/10468 - * g++.dg/ext/typeof6.C: New test. - -2003-06-27 Mark Mitchell <mark@codesourcery.com> - - PR c++/10796 - * g++.dg/init/enum1.C: New test. - -2003-06-27 Ulrich Weigand <uweigand@de.ibm.com> - - * gcc.dg/20030627-1.c: New test. - -2003-06-26 Mark Mitchell <mark@codesourcery.com> - - PR c++/11332 - * g++.dg/expr/static_cast2.C: New test. - -2003-06-26 Roger Sayle <roger@eyesopen.com> - Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/string-opt-16.c: Remove test for disabled - sprintf(dst,"%s",src) optimization. - * gcc.c-torture/execute/20030626-1.c: New test case. - * gcc.c-torture/execute/20030626-2.c: New test case. - -2003-06-26 J"orn Rennecke <joern.rennecke@superh.com> - - * gcc.c-torture/execute/multi-ix.c: New test. - - * gcc.c-torture/execute/simd-4.c (main): - Added missing semicolon at end of union. - -2003-06-26 Giovanni Bajo <giovannibajo@libero.it> - - PR c++/8266 - * g++.dg/template/explicit-instantiation3.C: New test. - -2003-06-26 Eric Botcazou <ebotcazou@libertysurf.fr> - - * gcc.dg/20030626-1.c: Use signed char. - -2003-06-26 Eric Botcazou <ebotcazou@libertysurf.fr> - - * gcc.dg/20030626-1.c: New test. - -2003-06-26 Neil Booth <neil@daikokuya.co.uk> - - * const-str-2.m: Update. - -2003-06-25 Mark Mitchell <mark@codesourcery.com> - - PR c++/10990 - * g++.dg/rtti/dyncast1.C: New test. - * g++.dg/abi/mangle4.C: Correct base-specifier access. - * g++.dg/lookup/scoped1.C: Remove XFAIL. - * g++.old-deja/g++.martin/pmf1.C: Correct base-specifier access. - - PR c++/10931 - * g++.dg/expr/static_cast1.C: New test. - -2003-06-25 Josef Zlomek <zlomekj@suse.cz> - - * gcc.dg/20030625-1.c: New test. - -2003-06-24 Roger Sayle <roger@eyesopen.com> - - * gcc.c-torture/compile/20030624-1.c: New test case. - -2003-06-24 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/string-opt-17.c: New test. - -2003-06-24 Mark Mitchell <mark@codesourcery.com> - - PR c++/5754 - * g++.dg/parse/crash6.C: New test. - -2003-06-23 Roger Sayle <roger@eyesopen.com> - - * gcc.dg/builtins-24.c: New test case. - -2003-06-23 Jakub Jelinek <jakub@redhat.com> - - * g++.dg/opt/operator1.C: New test. - -2003-06-22 Roger Sayle <roger@eyesopen.com> - - * gcc.c-torture/execute/string-opt-16.c: New test case. - -2003-06-21 Gabriel Dos Reis <gdr@integrable-solutions.net> - - * g++.old-deja/g++.benjamin/16077.C: Add -Wconversion option. - * g++.old-deja/g++.other/conv7.C: Likewise - * g++.old-deja/g++.other/overcnv2.C: Likewise. - * g++.old-deja/g++.other/overload14.C: Likewise. - -2003-06-21 Gabriel Dos Reis <gdr@integrable-solutions.net> - - * g++.old-deja/g++.jason/conversion5.C: Adjust option. - * g++.old-deja/g++.bugs/900215_01.C: Likewise. - -2003-06-20 Mark Mitchell <mark@codesourcery.com> - - PR c++/10888 - * g++.dg/warn/Winline-3.C: New test. - -2003-06-20 Mark Mitchell <mark@codesourcery.com> - - * lib/target-supports.exp (check_alias_available): Make the test - program acceptable to the Solaris assembler. - - PR c++/10749 - * g++.dg/template/memclass2.C: New test. - -2003-06-20 Mark Mitchell <mark@codesourcery.com> - Eric Botcazou <ebotcazou@libertysurf.fr> - - * lib/gcc-dg.exp (dg-xfail-if): Do not process conditional xfail - data for non-matching targets. - * gcc.c-torture/compile/simd-5.c: Fix typo in conditional xfail. - -2003-06-20 Mark Mitchell <mark@codesourcery.com> - - PR c++/10845 - * g++.dg/template/member3.C: New test. - -2003-06-19 Mark Mitchell <mark@codesourcery.com> - - PR c++/10939 - * g++.dg/template/func1.C: New test. - - PR c++/9649 - * g++.dg/template/static4.C: New test. - * g++.old-deja/g++.other/anon7.C: Remove spurious error messages. - - PR c++/11041 - * g++.dg/init/ref7.C: New test. - -2003-06-19 Matt Austern <austern@apple.com> - - PR c++/11228 - * g++.dg/anew1.C: New test. - * g++.dg/anew2.C: New test. - * g++.dg/anew3.C: New test. - * g++.dg/anew4.C: New test. - -2003-06-19 Kazu Hirata <kazu@cs.umass.edu> - - * gcc.c-torture/compile/simd-5.c: Don't XFAIL on H8. - -2003-06-19 J"orn Rennecke <joern.rennecke@superh.com> - - * gcc.c-torture/execute/simd-4.c (main): Make expected value - endian-dependent. - -2003-06-17 Benjamin Kosnik <bkoz@redhat.com> - - * lib/g++.exp (g++_include_flags): Tweak path to testsuite_flags. - Remove cruft. - -2003-06-17 Kazu Hirata <kazu@cs.umass.edu> - - * gcc.c-torture/compile/20020604-1.c: Use dg-xfail-if for h8300. - * gcc.c-torture/compile/961203-1.c: Likewise. - * gcc.c-torture/compile/980506-1.c: Likewise. - -2003-06-17 Mark Mitchell <mark@codesourcery.com> - - PR c++/10712 - * g++.dg/lookup/using7.C: New test. - -2003-06-17 Mark Mitchell <mark@codesourcery.com> - - PR c++/11105 - * g++.dg/abi/conv1.C: Remove it. - * g++.dg/template/conv7.C: New test. - * g++.dg/template/conv8.C: Likewise. - * g++.old-deja/g++.ext/pretty2.C: Do not test __FUNCTION__ for a - conversion operator. - -2003-06-17 Janis Johnson <janis187@us.ibm.com> - - * gcc.dg/compat/compat-common.h (DEBUG_INIT): New. - * gcc.dg/compat/scalar-by-value-1_x.c: Use it. - * gcc.dg/compat/scalar-by-value-2_x.c: Ditto. - * gcc.dg/compat/scalar-by-value-3_x.c: Ditto. - * gcc.dg/compat/scalar-by-value-4_x.c: Ditto. - * gcc.dg/compat/scalar-return-1_x.c: Ditto. - * gcc.dg/compat/scalar-return-2_x.c: Ditto. - * gcc.dg/compat/scalar-return-3_x.c: Ditto. - * gcc.dg/compat/scalar-return-4_x.c: Ditto. - * gcc.dg/compat/struct-by-value-10_x.c: Ditto. - * gcc.dg/compat/struct-by-value-11_x.c: Ditto. - * gcc.dg/compat/struct-by-value-12_x.c: Ditto. - * gcc.dg/compat/struct-by-value-13_x.c: Ditto. - * gcc.dg/compat/struct-by-value-14_x.c: Ditto. - * gcc.dg/compat/struct-by-value-15_x.c: Ditto. - * gcc.dg/compat/struct-by-value-16_x.c: Ditto. - * gcc.dg/compat/struct-by-value-17_x.c: Ditto. - * gcc.dg/compat/struct-by-value-18_x.c: Ditto. - * gcc.dg/compat/struct-by-value-2_x.c: Ditto. - * gcc.dg/compat/struct-by-value-3_x.c: Ditto. - * gcc.dg/compat/struct-by-value-4_x.c: Ditto. - * gcc.dg/compat/struct-by-value-5_x.c: Ditto. - * gcc.dg/compat/struct-by-value-6_x.c: Ditto. - * gcc.dg/compat/struct-by-value-7_x.c: Ditto. - * gcc.dg/compat/struct-by-value-8_x.c: Ditto. - * gcc.dg/compat/struct-by-value-9_x.c: Ditto. - * gcc.dg/compat/struct-return-10_x.c: Ditto. - * gcc.dg/compat/struct-return-2_x.c: Ditto. - * gcc.dg/compat/struct-return-3_x.c: Ditto. - -2003-06-16 Mark Mitchell <mark@codesourcery.com> - - * lib/gcc-dg.exp (dg-xfail-if): Fix thinko. - * gcc.c-torture/compile/simd-5.c: Remove spurious PowerPC-64 XFAIL - indications. - -2003-06-16 Roger Sayle <roger@eyesopen.com> - - * gcc.dg/i386-387-5.c: New test case. - * gcc.dg/i386-387-6.c: New test case. - * gcc.dg/builtins-23.c: New test case. - -2003-06-15 Roger Sayle <roger@eyesopen.com> - - * gcc.dg/builtins-22.c: New test case. - * gcc.dg/i386-387-1.c: Update to test exp. - * gcc.dg/i386-387-2.c: Likewise. - -2003-06-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.dg/format/asm_fprintf-1.c: Update width/precision checks. - -2003-06-12 Mark Mitchell <mark@codesourcery.com> - - * lib/gcc-dg.exp (dg-require-dll): New function. - (dg-xfail-if): Likewise. - * gcc.c-torture/compile/compile.exp: Use dg rather than c-torture - driver. - - * gcc.c-torture/compile/20000804-1.c: Convert to dg format. - * gcc.c-torture/compile/20001205-1.c: Likewise. - * gcc.c-torture/compile/20001226-1.c: Likewise. - * gcc.c-torture/compile/20010518-2.c: Likewise. - * gcc.c-torture/compile/20020312-1.c: Likewise. - * gcc.c-torture/compile/20020604-1.c: Likewise. - * gcc.c-torture/compile/920501-12.c: Likewise. - * gcc.c-torture/compile/920501-4.c: Likewise. - * gcc.c-torture/compile/920520-1.c: Likewise. - * gcc.c-torture/compile/920521-1.c: Likewise. - * gcc.c-torture/compile/920625-1.c: Likewise. - * gcc.c-torture/compile/961203-1.c: Likewise. - * gcc.c-torture/compile/980506-1.c: Likewise. - * gcc.c-torture/compile/981006-1.c: Likewise. - * gcc.c-torture/compile/981022-1.c: Likewise. - * gcc.c-torture/compile/981223-1.c: Likewise. - * gcc.c-torture/compile/990617-1.c: Likewise. - * gcc.c-torture/compile/dll.c: Likewise. - * gcc.c-torture/compile/labels-3.c: Likewise. - * gcc.c-torture/compile/mipscop-1.c: Likewise. - * gcc.c-torture/compile/mipscop-2.c: Likewise. - * gcc.c-torture/compile/mipscop-3.c: Likewise. - * gcc.c-torture/compile/mipscop-4.c: Likewise. - * gcc.c-torture/compile/simd-5.c: Likewise. - * gcc.c-torture/compile/20000804-1.x: Remove. - * gcc.c-torture/compile/20001205-1.x: Likewise. - * gcc.c-torture/compile/20001226-1.x: Likewise. - * gcc.c-torture/compile/20010518-2.x: Likewise. - * gcc.c-torture/compile/20020312-1.x: Likewise. - * gcc.c-torture/compile/20020604-1.x: Likewise. - * gcc.c-torture/compile/920501-12.x: Likewise. - * gcc.c-torture/compile/920501-4.x: Likewise. - * gcc.c-torture/compile/920520-1.x: Likewise. - * gcc.c-torture/compile/920521-1.x: Likewise. - * gcc.c-torture/compile/920625-1.x: Likewise. - * gcc.c-torture/compile/961203-1.x: Likewise. - * gcc.c-torture/compile/980506-1.x: Likewise. - * gcc.c-torture/compile/981006-1.x: Likewise. - * gcc.c-torture/compile/981022-1.x: Likewise. - * gcc.c-torture/compile/981223-1.x: Likewise. - * gcc.c-torture/compile/990617-1.x: Likewise. - * gcc.c-torture/compile/mipscop-1.x: Likewise. - * gcc.c-torture/compile/mipscop-2.x: Likewise. - * gcc.c-torture/compile/mipscop-3.x: Likewise. - * gcc.c-torture/compile/mipscop-4.x: Likewise. - * gcc.c-torture/compile/simd-5.x: Likewise. - - * gcc.c-torture/compile/20021205-1.c: Remove bogus dg commands. - -2003-06-13 Eric Botcazou <ebotcazou@libertysurf.fr> - - * gcc.c-torture/execute/20030611-1.c: New test. - -2003-06-12 Roger Sayle <roger@eyesopen.com> - - PR middle-end/168 - * gcc.dg/20030612-1.c: New test case. - -2003-06-12 Mark Mitchell <mark@codesourcery.com> - - PR c++/10635 - * g++.dg/expr/cast1.C: New test. - -2003-06-12 Roger Sayle <roger@eyesopen.com> - - * gcc.dg/builtins-21.c: New test case. - -2003-06-11 Kelley Cook <kelleycook@wideopenwest.com> - - * lib/gcc.exp (gcc_target_compile): Put TOOL_OPTIONS at front of - options instead of at the end. - * lib/objc.exp (objc_target_compile): Likewise. - -2003-06-11 Mark Mitchell <mark@codesourcery.com> - - PR c++/10432 - * g++.dg/parse/error1.C: New test. - -2003-06-11 Janis Johnson <janis187@us.ibm.com> - - * gcc.dg/compat/struct-by-value-11_main.c: New file. - * gcc.dg/compat/struct-by-value-11_x.c: New file. - * gcc.dg/compat/struct-by-value-11_y.c: New file. - * gcc.dg/compat/struct-by-value-12_main.c: New file. - * gcc.dg/compat/struct-by-value-12_x.c: New file. - * gcc.dg/compat/struct-by-value-12_y.c: New file. - * gcc.dg/compat/struct-by-value-13_main.c: New file. - * gcc.dg/compat/struct-by-value-13_x.c: New file. - * gcc.dg/compat/struct-by-value-13_y.c: New file. - * gcc.dg/compat/struct-by-value-14_main.c: New file. - * gcc.dg/compat/struct-by-value-14_x.c: New file. - * gcc.dg/compat/struct-by-value-14_y.c: New file. - * gcc.dg/compat/struct-by-value-15_main.c: New file. - * gcc.dg/compat/struct-by-value-15_x.c: New file. - * gcc.dg/compat/struct-by-value-15_y.c: New file. - * gcc.dg/compat/struct-by-value-16_main.c: New file. - * gcc.dg/compat/struct-by-value-16_x.c: New file. - * gcc.dg/compat/struct-by-value-16_y.c: New file. - * gcc.dg/compat/struct-by-value-17_main.c: New file. - * gcc.dg/compat/struct-by-value-17_x.c: New file. - * gcc.dg/compat/struct-by-value-17_y.c: New file. - * gcc.dg/compat/struct-by-value-18_main.c: New file. - * gcc.dg/compat/struct-by-value-18_x.c: New file. - * gcc.dg/compat/struct-by-value-18_y.c: New file. - - * gcc.dg/compat/scalar-by-value-3_main.c: New file. - * gcc.dg/compat/scalar-by-value-3_x.c: New file. - * gcc.dg/compat/scalar-by-value-3_y.c: New file. - * gcc.dg/compat/scalar-by-value-4_main.c: New file. - * gcc.dg/compat/scalar-by-value-4_x.c: New file. - * gcc.dg/compat/scalar-by-value-4_y.c: New file. - * gcc.dg/compat/scalar-return-3_main.c: New file. - * gcc.dg/compat/scalar-return-3_x.c: New file. - * gcc.dg/compat/scalar-return-3_y.c: New file. - * gcc.dg/compat/scalar-return-4_main.c: New file. - * gcc.dg/compat/scalar-return-4_x.c: New file. - * gcc.dg/compat/scalar-return-4_y.c: New file. - -2003-06-10 Janis Johnson <janis187@us.ibm.com> - - * gcc.dg/compat/fp2-struct-check.h: New file. - * gcc.dg/compat/fp2-struct-defs.h: New file. - * gcc.dg/compat/fp2-struct-init.h: New file. - * gcc.dg/compat/struct-by-value-10_main.c: New file. - * gcc.dg/compat/struct-by-value-10_x.c: New file. - * gcc.dg/compat/struct-by-value-10_y.c: New file. - * gcc.dg/compat/struct-return-10_main.c: New file. - * gcc.dg/compat/struct-return-10_x.c: New file. - * gcc.dg/compat/struct-return-10_y.c: New file. - - * gcc.dg/compat/compat-common.h: New file. - * gcc.dg/compat/fp-struct-check.h: Improve debugging output. - * gcc.dg/compat/fp-struct-test-by-value-x.h: Ditto. - * gcc.dg/compat/fp-struct-test-by-value-y.h: Ditto. - * gcc.dg/compat/scalar-by-value-1_main.c: Ditto. - * gcc.dg/compat/scalar-by-value-1_x.c: Ditto. - * gcc.dg/compat/scalar-by-value-1_y.c: Ditto. - * gcc.dg/compat/scalar-by-value-2_main.c: Ditto. - * gcc.dg/compat/scalar-by-value-2_x.c: Ditto. - * gcc.dg/compat/scalar-by-value-2_y.c: Ditto. - * gcc.dg/compat/scalar-return-1_main.c: Ditto. - * gcc.dg/compat/scalar-return-1_x.c: Ditto. - * gcc.dg/compat/scalar-return-1_y.c: Ditto. - * gcc.dg/compat/scalar-return-2_main.c: Ditto. - * gcc.dg/compat/scalar-return-2_x.c: Ditto. - * gcc.dg/compat/scalar-return-2_y.c: Ditto. - * gcc.dg/compat/small-struct-check.h: Ditto. - * gcc.dg/compat/struct-by-value-2_main.c: Ditto. - * gcc.dg/compat/struct-by-value-2_x.c: Ditto. - * gcc.dg/compat/struct-by-value-2_y.c: Ditto. - * gcc.dg/compat/struct-by-value-3_main.c: Ditto. - * gcc.dg/compat/struct-by-value-3_x.c: Ditto. - * gcc.dg/compat/struct-by-value-3_y.c: Ditto. - * gcc.dg/compat/struct-by-value-4_main.c: Ditto. - * gcc.dg/compat/struct-by-value-4_x.c: Ditto. - * gcc.dg/compat/struct-by-value-4_y.c: Ditto. - * gcc.dg/compat/struct-by-value-5_main.c: Ditto. - * gcc.dg/compat/struct-by-value-5_x.c: Ditto. - * gcc.dg/compat/struct-by-value-5_y.c: Ditto. - * gcc.dg/compat/struct-by-value-6_main.c: Ditto. - * gcc.dg/compat/struct-by-value-6_x.c: Ditto. - * gcc.dg/compat/struct-by-value-6_y.c: Ditto. - * gcc.dg/compat/struct-by-value-7_main.c: Ditto. - * gcc.dg/compat/struct-by-value-7_x.c: Ditto. - * gcc.dg/compat/struct-by-value-7_y.c: Ditto. - * gcc.dg/compat/struct-by-value-8_main.c: Ditto. - * gcc.dg/compat/struct-by-value-8_x.c: Ditto. - * gcc.dg/compat/struct-by-value-8_y.c: Ditto. - * gcc.dg/compat/struct-by-value-9_main.c: Ditto. - * gcc.dg/compat/struct-by-value-9_x.c: Ditto. - * gcc.dg/compat/struct-by-value-9_y.c: Ditto. - * gcc.dg/compat/struct-return-2_main.c: Ditto. - * gcc.dg/compat/struct-return-2_x.c: Ditto. - * gcc.dg/compat/struct-return-2_y.c: Ditto. - * gcc.dg/compat/struct-return-3_main.c: Ditto. - * gcc.dg/compat/struct-return-3_x.c: Ditto. - * gcc.dg/compat/struct-return-3_y.c: Ditto. - -2003-06-10 Geoffrey Keating <geoffk@apple.com> - - * g++.dg/pch/static-1.C: New file. - * g++.dg/pch/static-1.Hs: New file. - -2003-06-10 Richard Henderson <rth@redhat.com> - - * gcc.dg/asm-7.c: Adjust expected warning text. - -2003-06-10 Roger Sayle <roger@eyesopen.com> - - * gcc.dg/builtins-20.c: New test case. - -2003-06-10 Mark Mitchell <mark@codesourcery.com> - - PR c++/11131 - * g++.dg/opt/template1.C: New test. - -2003-06-09 Mark Mitchell <mark@codesourcery.com> - - * lib/gcc-dg.exp (dg-test): Clear additional_files and - additional_sources. - -2003-05-21 David Taylor <dtaylor@emc.com> - - * gcc.dg/Wpadded.c: New file. - -2003-06-09 Mark Mitchell <mark@codesourcery.com> - - * gcc.dg/special/20000419-2.c: Fix dg-require-alias syntax. - * gcc.dg/special/weak-2.c: Add dg-require-weak. - * gcc.dg/weak/weak-3.c: Reverse order of dg-do and - dg-require-weak. - -2003-06-09 J"orn Rennecke <joern.rennecke@superh.com> - - * g++.dg/other/offsetof3.C: Adjust linenumber of last expected warning. - -2003-06-09 Mark Mitchell <mark@codesourcery.com> - - * lib/gcc-dg.exp (dg-require-weak): Fix typo. - (dg-require-alias): Likewise. - (dg-require-gc-sections): Likewise. - * lib/target-supports.exp (check_gc_sections_available): Likewise. - -2003-06-08 Richard Henderson <rth@redhat.com> - - * gcc.dg/20011029-2.c: Fix the array reference. - * gcc.dg/asm-7.c: New. - -2003-06-08 Kazu Hirata <kazu@cs.umass.edu> - - * gcc.c-torture/compile/20000804-1.x: Disable on h8300 port. - -2003-06-08 Mark Mitchell <mark@codesourcery.com> - - * lib/gcc-dg.exp (dg-require-alias): Fix typo. - (dg-require-gc-sections): Likewise. - -2003-06-08 Jan Hubicka <jh@suse.cz> - - * i386-cmov1.c: Fix regular expression. - * i386-cvt-1.c: Likewise. - * i386-local.c: Likewise. - * i386-local2.c: Likewise. - * i386-mul.c: Likewise. - * i386-ssetype-1.c: Likewise. - * i386-ssetype-3.c: Likewise. - * i386-ssetype-5.c: Likewise. - -2003-06-08 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - PR c++/11039 - * g++.dg/warn/implicit-typename2.C: New test. - * g++.dg/warn/implicit-typename3.C: New test. - -2003-06-07 Richard Henderson <rth@redhat.com> - - * g++.dg/other/offsetof3.C: Use size_t. - * g++.dg/other/offsetof4.C: Likewise. - -2003-06-07 H.J. Lu <hongjiu.lu@intel.com> - - * lib/copy-file.exp: New. Implement gcc_copy_files. - - * lib/dg-pch.exp: Load copy-file.exp - (dg-pch): Use gcc_copy_files instead of "file copy". - -2003-06-06 Mark Mitchell <mark@codesourcery.com> - - * gcc.dg/weak/weak.exp: Simplify. - * gcc.dg/weak/typeof-2.c: Use dg-require-weak. - * gcc.dg/weak/weak-1.c: Likewise. - * gcc.dg/weak/weak-2.c: Likewise. - * gcc.dg/weak/weak-3.c: Likewise. - * gcc.dg/weak/weak-4.c: Likewise. - * gcc.dg/weak/weak-5.c: Likewise. - * gcc.dg/weak/weak-6.c: Likewise. - * gcc.dg/weak/weak-7.c: Likewise. - * gcc.dg/weak/weak-8.c: Likewise. - * gcc.dg/weak/weak-9.c: Likewise. - -2003-06-06 Richard Earnshaw <rearnsha@arm.com> - - gcc.c-torture/execute/20030606-1.c: New. - -2003-06-06 Roger Sayle <roger@eyesopen.com> - - * gcc.dg/builtins-2.c: Correct check-in of incorrect version. - * gcc.dg/builtins-19.c: Likewise. - -2003-06-06 Roger Sayle <roger@eyesopen.com> - - * gcc.dg/builtins-2.c: Add some more tests. - * gcc.dg/builtins-18.c: New test case. - * gcc.dg/builtins-19.c: New test case. - -2003-06-06 Roger Sayle <roger@eyesopen.com> - Jim Wilson <wilson@tuliptree.org> - - * gcc.dg/uninit-C.c: Only test TImode on 64-bit platforms. - -2003-06-06 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/builtins/string-4.c (main_test): Allow some - mempcpy/stpcpy calls not to be optimized into something else. - * gcc.c-torture/execute/string-opt-3.c: Moved to... - * gcc.c-torture/execute/builtins/string-7.c: ...here. - * gcc.c-torture/execute/builtins/string-7-lib.c: New. - -2003-06-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.dg/format/asm_fprintf-1.c: New test. - -2003-06-05 Mark Mitchell <mark@codesourcery.com> - - * lib/gcc-defs.exp (additional_sources): New variable. - (dg-additional-sources): New function. - (additional_files): New variable. - (dg-additional-files): New function. - (dg-additional-files-options): Likewise. - * lib/gcc-dg.exp (dg-require-weak): New function. - (dg-require-alias): Likewise. - (dg-require-gc-sections): Likewise. - * lib/target-supports.exp (check_alias_available): Remove testfile - parameter. - (check_gc_sections_available): New function. - * lib/g++-dg.exp (dg-gpp-additional-sources): Remove. - (dg-gpp-additional-files): Likewise. - * lib/g++.exp (additional_sources): Remove. - (additional_files): Likewise. - (g++_target_compile): Use dg-additional-files-options. - - * gcc.dg/special/special.exp: Add "ecos" tests. Remove complex - Tcl logic. - * gcc.dg/special/ecos.exp: Remove. - * gcc.dg/special/20000419-2.c: Use dg-require-*. - * gcc.dg/special/alias-1.c: Likewise. - * gcc.dg/special/alias-2.c: Likewise. - * gcc.dg/special/gcsec-1.c: Likewise. - * gcc.dg/special/weak-1.c: Likewise. - * gcc.dg/special/weak-2.c: Likewise. - * gcc.dg/special/wkali-1.c: Likewise. - * gcc.dg/special/wkali-2.c: Likewise. - - * g++.dg/special/conpr-2.C: Use dg-additional-*, not - dg-gpp-additional-*. - * g++.dg/special/conpr-3.C: Likewise. - * g++.dg/special/conpr-4.C: Likewise. - * g++.old-deja/g++.abi/vtable3a.C: Likewise. - * g++.old-deja/g++.abi/vtable3b.C: Likewise. - * g++.old-deja/g++.abi/vtable3c.C: Likewise. - * g++.old-deja/g++.abi/vtable3d.C: Likewise. - * g++.old-deja/g++.abi/vtable3e.C: Likewise. - * g++.old-deja/g++.abi/vtable3f.C: Likewise. - * g++.old-deja/g++.abi/vtable3g.C: Likewise. - * g++.old-deja/g++.abi/vtable3h.C: Likewise. - * g++.old-deja/g++.abi/vtable3i.C: Likewise. - * g++.old-deja/g++.abi/vtable3j.C: Likewise. - * g++.old-deja/g++.oliva/linkage1.C: Likewise. - * g++.old-deja/g++.other/comdat1.C: Likewise. - * g++.old-deja/g++.other/comdat2.C: Likewise. + * gcc.dg/co * g++.old-deja/g++.other/comdat3.C: Likewise. * g++.old-deja/g++.other/ctor1.C: Likewise. * g++.old-deja/g++.pt/instantiate5.C: Likewise. @@ -8719,590 +7979,7 @@ * g++.old-deja/g++.mike/eh48.C: Likewise * g++.old-deja/g++.mike/eh49.C: Likewise * g++.old-deja/g++.mike/eh50.C: Likewise - * g++.old-deja/g++.mike/eh51.C: Likewise - * g++.old-deja/g++.mike/eh53.C: Likewise - * g++.old-deja/g++.mike/eh55.C: Likewise - * g++.old-deja/g++.mike/p7912.C: Likewise - * g++.old-deja/g++.mike/p9706.C: Likewise - * g++.old-deja/g++.mike/p10416.C: Likewise - * g++.old-deja/g++.mike/p11667.C: Likewise - * g77.f-torture/compile/20010519-1.f: Remove reference to Convex. - Remove redundant reference to Iris. - * gcc.dg/20020312-2.c: Remove references to AMD A29K, Clipper, Convex, - Elxsi, i860, Pico Java, and WE32K. - -2003-01-07 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/ext/asm4.C: New test. - -2003-01-08 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - PR c++/9030 - * g++.dg/template/friend12.C: New test. - * g++.dg/template/friend13.C: Likewise. - * g++.old-deja/g++.eh/spec6.C: Add missing error message. - -2003-01-08 Jan Hubicka <jh@suse.cz> - - * gcc.dg/i386-cadd.c: New test. - * gcc.dg/i386-cmov4.c: Likewise. - -2003-01-06 Mark Mitchell <mark@codesourcery.com> - - PR c++/9165 - * g++.dg/warn/Wunused-3.C: New test. - - * g++.dg/abi/bitfield9.C: New test. - - PR c++/9189 - * g++.dg/parse/defarg3.C: New test. - -2003-01-06 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/parse/ambig1.C: New test. - * g++.dg/parse/defarg2.C: New test. - -2003-01-05 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/template/defarg-1.C: New test. - * g++.dg/template/local2.C: Likewise. - -2003-01-05 Richard Sandiford <rsandifo@redhat.com> - - * gcc.c-torture/execute/20030105-1.c: New test. - -2003-01-04 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - * g++.dg/parse/namespace3.C: Remove extra semicolons. - * g++.dg/parse/namespace4.C: Likewise. - -2003-01-03 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/template/ntp2.C: New test. - -2003-01-03 Nathanael Nerode <neroden@gcc.gnu.org> - - * g++.dg/parse/extern-C-1.C: New test. - - * g++.dg/parse/namespace4.C: New test. - - * g++.dg/template/nested1.C: New test. - - * g++.dg/parse/namespace3.C: New test. - -2003-01-02 Nathanael Nerode <neroden@gcc.gnu.org> - - * g++.dg/lookup/two-stage1.C: New test. - -2003-01-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * g++.old-deja/g++.bugs/900404_04.C: Remove XFAIL. - * g++.old-deja/g++.jason/access8.C: Likewise. - * g++.old-deja/g++.other/decl5.C: Likewise. - -2003-01-02 Neil Booth <neil@daikokuya.co.uk> - - * g++.dg/parse/parse7.C: New test. - -2003-01-02 Mark Mitchell <mark@codesourcery.com> - - PR c++/2843 - * g++.dg/ext/attrib7.C: New test. - -2003-01-02 Neil Booth <neil@daikokuya.co.uk> - - * g++.dg/parse/parse6.C: New test. - -2003-01-02 Kazu Hirata <kazu@cs.umass.edu> - - * gcc.dg/h8300-stack-1.c: New. - -2003-01-01 Nathanael Nerode <neroden@gcc.gnu.org> - - g++.dg/lookup/exception1.C: New test. - - g++.dg/lookup/template1.C: New test. - - g++.dg/parse/namespace2.C: New test. - - g++.dg/parse/parens2.C: New test. - -2003-01-01 Neil Booth <neil@daikokuya.co.uk> - - * g++.dg/parse/parse5.C: New test. - * g++.dg/lookup/scoped4.C: New test. - -2003-01-01 Nathanael Nerode <neroden@gcc.gnu.org> - - * g++.dg/parse/parens1.C: New test. - - * g++.dg/parse/parens2.C: Removed, turned out to duplicate - angle-bracket1.C. - * g++.dg/parse/parens2.C: New test. - - * g++.dg/lookup/scope-operator1.C: New test. - - * g++.dg/parse/operator1.C: New test. - -2003-01-01 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - * g++.old-deja/g++.jason/ambig3.C: Remove XFAIL. - * g++.old-deja/g++.other/access6.C: Likewise. - * g++.old-deja/g++.other/decl1.C: Likewise. - * g++.old-deja/g++.pt/typename12.C: Likewise. - -2002-12-31 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/parse/namespace1.C: New test. - -2003-01-01 Neil Booth <neil@daikokuya.co.uk> - - * g++.dg/parse/parse4.C: New test. - -2003-01-01 Neil Booth <neil@daikokuya.co.uk> - - * g++.dg/parse/parse3.C: New test. - -2003-01-01 Neil Booth <neil@daikokuya.co.uk> - - * g++.dg/parse/parse2.C: New test. - -2003-01-01 Neil Booth <neil@daikokuya.co.uk> - - * g++.dg/template/friend11.C: New test. -2003-01-01 Neil Booth <neil@daikokuya.co.uk> - - * g++.dg/parse/parse1.C: New test. - -2002-12-31 Janis Johnson <janis187@us.ibm.com> - - * lib/profopt.exp: Change the name of a global variable to avoid - possible clashes with other test suites. - -2002-12-31 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/inherit/covariant8.C: New test. - -2002-12-31 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/init/array9.C: New test. - - PR c++/9112 - * g++.dg/parse/expr1.C: New test. - -2002-12-30 Daniel Jacobowitz <drow@mvista.com> - - * gcc.c-torture/compile/20021230-1.c: New test. - -2002-12-30 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/inherit/covariant5.C: New test. - * g++.dg/inherit/covariant6.C: New test. - * g++.dg/inherit/covariant7.C: New test. - -2002-12-29 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - PR c++/2739 - * g++.dg/other/access2.C: New test. - -2002-12-29 Gabriel Dos Reis <gdr@integrable-solutions.net> - - * g++.dg/other/anon-struct.C: No longer fails - * g++.old-deja/g++.brendan/parse4.C: Likewise. - * g++.old-deja/g++.brendan/parse5.C: Likewise. - * g++.old-deja/g++.brendan/parse6.C: Likewise. - -2002-12-28 Gabriel Dos Reis <gdr@integrable-solutions.net> - - * g++.dg/parse/angle-bracket.C (main): No longer fails. - -2002-12-27 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/eh/spec4.C: Remove stray semicolon. - * g++.dg/expr/pmf-1.C: Change error message. - * g++.dg/ext/asm1.C: Remove stray semicolon. - * g++.dg/ext/typename1.C: Add missing typenames. - * g++.dg/inherit/template-as-base.C: Change error message. - * g++.dg/lookup/scoped1.C: Likewise. - * g++.dg/lookup/scoped2.C: Likewise. - * g++.dg/lookup/using2.C: Likewise. - * g++.dg/other/component1.C: Remove stray semicolon. - * g++.dg/other/do1.C: Change error message. - * g++.dg/other/error2.C: Likewise. - * g++.dg/other/init1.C: Likewise. - * g++.dg/other/packed1.C: Remove stray semicolon. - * g++.dg/other/ptrmem2.C: Change error message. - * g++.dg/parse/parameter-declaration-1.C: Remove line number - marker. - * g++.dg/special/initp1.C: Remove invalid attribute usage. - * g++.dg/template/access3.C: Add typename keyword. - * g++.dg/template/access5.C: Remove stray semicolon. - * g++.dg/template/access6.C: Likewise. - * g++.dg/template/complit1.C: Likewise. - * g++.dg/template/crash1.C: Change error message. - * g++.dg/template/inherit2.C: Remove stray semicolon. - * g++.dg/template/instantiate2.C: Likewise. - * g++.dg/template/instantiate3.C: Change error message. - * g++.dg/template/qual1.C: Remove stray semicolon. - * g++.dg/template/qualttp18.C: Change error message. - * g++.dg/template/ref1.C: Remove stray semicolon. - * g++.dg/template/sizeof1.C (A::value): Declare it. - * g++.dg/template/spec4.C: Change error message. - * g++.dg/template/static1.C: Likewise. - * g++.dg/template/type1.C: Likewise. - * g++.dg/template/typename3.C: Likewise. - * g++.old-deja/g++.benjamin/13478.C: Change error message. - * g++.old-deja/g++.benjamin/15799.C: Remove stray semicolon. - * g++.old-deja/g++.benjamin/bool01.C: Likewise. - * g++.old-deja/g++.benjamin/bool02.C: Likewise. - * g++.old-deja/g++.benjamin/p13417.C: Now fails due to use of - named return value extension. - * g++.old-deja/g++.benjamin/tem06.C: Remove stray semicolon. - * g++.old-deja/g++.benjmain/warn01.C: Likewise. - * g++.old-deja/g++.bob/extern_C.C: Likewise. - * g++.old-deja/g++.bob/inherit2.C: Likewise. - * g++.old-deja/g++.brendan/complex1.C: Likewise. - * g++.old-deja/g++.brendan/copy5.C: Likewise. - * g++.old-deja/g++.brendan/crash13.C: Likewise. - * g++.old-deja/g++.brendan/crash15.C: Likewise. - * g++.old-deja/g++.brendan/crash18.C: Change error message. - * g++.old-deja/g++.brendan/crash37.C: Remove stray semicolon. - * g++.old-deja/g++.brendan/crash38.C: Likewise. - * g++.old-deja/g++.brendan/crash50.C: Likewise. - * g++.old-deja/g++.brendan/crash56.C: Likewise. - * g++.old-deja/g++.brendan/crash6.C: Use explicit specialization - syntax. - * g++.old-deja/g++.brendan/crash66.C: Remove stray semicolon. - * g++.old-deja/g++.brendan/crash8.C: Change error message. - * g++.old-deja/g++.brendan/ctors1.C: Remove stray semicolon. - * g++.old-deja/g++.brendan/ctors2.C: Likewise. - * g++.old-deja/g++.brendan/shadow1.C: Likewise. - * g++.old-deja/g++.brendan/template11.C: Likewise. - * g++.old-deja/g++.brendan/template26.C: Likewise. - * g++.old-deja/g++.brendan/template27.C: Use explicit - specialization syntax. - * g++.old-deja/g++.brendan/template30.C: Likewise. - * g++.old-deja/g++.brendan/template5.C: Remove stray semicolon. - * g++.old-deja/g++.brendan/visibility3.C: Account for use of - non-dependent names. - * g++.old-deja/g++.brendan/warnings4.C: Remove stray semicolon. - * g++.old-deja/g++.brendan/warnings7.C: Likewise. - * g++.old-deja/g++.bugs/900121_02.C: Likewise. - * g++.old-deja/g++.eh/catchptr1.C: Likewise. - * g++.old-deja/g++.ext/addrfunc4.C: Likewise. - * g++.old-deja/g++.ext/namedret1.C: Now fails due to use of - named return value extension. - * g++.old-deja/g++.ext/namedret2.C: Likewise. - * g++.old-deja/g++.ext/namedret3.C: Likewise. - * g++.old-deja/g++.ext/return1.C: Likewise. - * g++.old-deja/g++.ext/typename1.C: Add missing typename keywords. - * g++.old-deja/g++.jason/access17.C: Issue more error messages. - * g++.old-deja/g++.jason/access8.C: Likewise. - * g++.old-deja/g++.jason/bool.C: Remove stray semicolon. - * g++.old-deja/g++.jason/destruct.C: Remove incorrect - pseudo-destructor names. - * g++.old-deja/g++.jason/dtor3.C: Remove stray semicolon. - * g++.old-deja/g++.jason/dtor5.C: Remove incorrect - pseudo-destructor names. - * g++.old-deja/g++.jason/opeq3.C: Remove stray semicolon. - * g++.old-deja/g++.jason/overload19.C: Likewise. - * g++.old-deja/g++.jason/overload32.C: Likewise. - * g++.old-deja/g++.jason/parse11.C: Issue error messages about - stray semicolons. - * g++.old-deja/g++.jason/pmem2.C: Remove stray semicolon. - * g++.old-deja/g++.jason/return.C: Likewise. - * g++.old-deja/g++.jason/return2.C: Likewise. - * g++.old-deja/g++.jason/shadow1.C: Likewise. - * g++.old-deja/g++.jason/special.C: Use explicit specialization - syntax. - * g++.old-deja/g++.jason/template10.C: Account for use of - non-dependent names. - * g++.old-deja/g++.jason/template11.C: Use explicit specialization - syntax. - * g++.old-deja/g++.jason/template37.C: Likewise. - * g++.old-deja/g++.law/access4.C: Change error messages. - * g++.old-deja/g++.law/arm13.C: Remove incorrect - pseudo-destructor names. - * g++.old-deja/g++.law/code-gen5.C: Remove stray semicolon. - * g++.old-deja/g++.law/ctors9.C: Likewise. - * g++.old-deja/g++.law/cvt22.C: Likewise. - * g++.old-deja/g++.law/dtors5.C: Likewise. - * g++.old-deja/g++.law/global-init1.C: Likewise. - * g++.old-deja/g++.law/missed-error3.C: Likewise. - * g++.old-deja/g++.law/operators28.C: Likewise. - * g++.old-deja/g++.law/visibility28.C: Likewise. - * g++.old-deja/g++.martin/eval1.C: Likewise. - * g++.old-deja/g++.martin/pmf2.C: Remove qualifier in constructor - name. - * g++.old-deja/g++.mike/hog1.C: Remove stray semicolon. - * g++.old-deja/g++.mike/net34.C: Likewise. - * g++.old-deja/g++.mike/net36.C: Likewise. - * g++.old-deja/g++.mike/ns2.C: Likewise. - * g++.old-deja/g++.mike/p12306.C: Likewise. - * g++.old-deja/g++.mike/p646.C: Adjust for removal of named return - value extension. - * g++.old-deja/g++.mike/p700.C: Likewise. - * g++.old-deja/g++.mike/p701.C: Remove stray semicolon. - * g++.old-deja/g++.mike/p710.C: Likewise. - * g++.old-deja/g++.mike/p784.C: Adjust for removal of named return - value extension. - * g++.old-deja/g++.mike/pmf7.C: Remove stray semicolon. - * g++.old-deja/g++.mike/pmf9.C: Likewise. - * g++.old-deja/g++.ns/crash2.C: Likewise. - * g++.old-deja/g++.ns/crash3.C: Likewise. - * g++.old-deja/g++.ns/invalid1.C: Likewise. - * g++.old-deja/g++.ns/ns17.C: Likewise. - * g++.old-deja/g++.ns/template16.C: Likewise. - * g++.old-deja/g++.ns/template5.C: Remove invalid use of template - keyword. - * g++.old-deja/g++.ns/template6.C: Remove stray semicolon. - * g++.old-deja/g++.ns/using9.C: Remove stray semicolon. - * g++.old-deja/g++.oliva/nameret1.C: Now fails due to use of - named return value extension. - * g++.old-deja/g++.oliva/nameret2.C: Likewise. - * g++.old-deja/g++.other/access4.C: Issue additional error - messages. - * g++.old-deja/g++.other/array6.C: Remove stray semicolon. - * g++.old-deja/g++.other/crash1.C: Isue additional error messages. - * g++.old-deja/g++.other/crash11.C: Add missing class-key. - * g++.old-deja/g++.other/crash25.C: Change error message. - * g++.old-deja/g++.other/crash4.C: Change error message. - * g++.old-deja/g++.other/debug7.C: Remove stray semicolon. - * g++.old-deja/g++.other/decl5.C: Issue more error messages. - * g++.old-deja/g++.other/defarg7.C: Remove circular dependency - checks. - * g++.old-deja/g++.other/defarg8.C: Likewise. - * g++.old-deja/g++.other/dtor1.C: Remove stray semicolon. - * g++.old-deja/g++.other/dtor10.C: Likewise. - * g++.old-deja/g++.other/incomplete.C: Likewise. - * g++.old-deja/g++.other/linkage7.C: Likewise. - * g++.old-deja/g++.other/lookup19.C: Now fails due to corrected - lookup algorithm. - * g++.old-deja/g++.other/mangle2.C: Likewise. - * g++.old-deja/g++.other/refinit2.C: Likewise. - * g++.old-deja/g++.other/sizeof2.C: Change error messages. - * g++.old-deja/g++.other/std1.C: Remove stray semicolon. - * g++.old-deja/g++.pt/crash28.C: Likewise. - * g++.old-deja/g++.pt/crash29.C: Use explicit specialization - syntax. - * g++.old-deja/g++.pt/crash32.C: Change error message. - * g++.old-deja/g++.pt/crash43.C: Adjust error messages. - * g++.old-deja/g++.pt/crash58.C: Remove stray semicolon. - * g++.old-deja/g++.pt/crash65.C: Tweak to acount for change in - error message position. - * g++.old-deja/g++.pt/defarg5.C: Remove stray semicolon. - * g++.old-deja/g++.pt/defarg8.C: Change error message. - * g++.old-deja/g++.pt/eichin01.C: Use explicit specialization - syntax. - * g++.old-deja/g++.pt/eichin01a.C: Define static data members. - * g++.old-deja/g++.pt/eichin01b.C: Likewise. - * g++.old-deja/g++.pt/enum7.C: Remove stray semicolon. - * g++.old-deja/g++.pt/explicit12.C: Remove invalid use of template - keyword. - * g++.old-deja/g++.pt/explicit31.C: Likewise. - * g++.old-deja/g++.pt/explicit33.C: Remove stray semicolon. - * g++.old-deja/g++.pt/explicit35.C: Remove invalid use of template - keyword. - * g++.old-deja/g++.pt/explicit71.C: Change error message. - * g++.old-deja/g++.pt/explicit80.C: Use explicit specialization - syntax. - * g++.old-deja/g++.pt/friend28.C: Account for use of - non-dependent names. - * g++.old-deja/g++.pt/friend29.C: Likewise. - * g++.old-deja/g++.pt/friend46.C: Adjust for correct name lookup - rules. - * g++.old-deja/g++.pt/friend48.C: Remove stray semicolon. - * g++.old-deja/g++.pt/instantiate1.C: Use correct class-key. - * g++.old-deja/g++.pt/instantiate11.C: Adjust for correct name - lookup rules. - * g++.old-deja/g++.pt/instantiate8.C: Remove stray semicolon. - * g++.old-deja/g++.pt/instantiate9.C: Insert missing typename - keyword. - * g++.old-deja/g++.pt/memclass20.C: Likewise. - * g++.old-deja/g++.pt/memclass5.C: Likewise. - * g++.old-deja/g++.pt/memclass7.C: Remove invalid use of template - keyword. - * g++.old-deja/g++.pt/memtemp75.C: Likewise. - * g++.old-deja/g++.pt/memtemp81.C: Remove stray semicolon. - * g++.old-deja/g++.pt/memtemp87.C: Add missing access specifier. - * g++.old-deja/g++.pt/overload13.C: Correct error messages. - * g++.old-deja/g++.pt/parms2.C: Add missing typename keyword. - * g++.old-deja/g++.pt/ptrmem1.C: Remove invalid use of template - keyword. - * g++.old-deja/g++.pt/spec10.C: Likewise. - * g++.old-deja/g++.pt/spec28.C: Reorder declarations. - * g++.old-deja/g++.pt/t10.C: Add explicit specialization syntax. - * g++.old-deja/g++.pt/t32.C: Remove stray semicolon. - * g++.old-deja/g++.pt/t35a.C: Add explicit specialization syntax. - * g++.old-deja/g++.pt/ttp24.C: Remove stray semicolon. - * g++.old-deja/g++.pt/ttp62.C: Likewise. - * g++.old-deja/g++.pt/ttp64.C: Likewise. - * g++.old-deja/g++.pt/typename11.C: Add missing typename keyword. - * g++.old-deja/g++.pt/typename15.C: Likewise. - * g++.old-deja/g++.pt/typename22.C: Likewise. - * g++.old-deja/g++.pt/typename6.C: Change error messages. - * g++.old-deja/g++.pt/using1.C: Remove stray semicolon. - * g++.old-deja/g++.pt/virtual2.C: Likewise. - * g++.old-deja/g++.robertl/eb118.C: Add explicit specialization - syntax. - * g++.old-deja/g++.robertl/eb27.C: Now fails due to use of named - return value extension. - * g++.old-deja/g++.robertl/eb43.C: Remove stray semicolon. - * g++.old-deja/g++.robertl/eb79.C: Correct for new name lookup rules. - * g++.old-deja/g++.robertl/eb82.C: Remove stray semicolons. - * g++.old-deja/g++.robertl/eb86.C: Add missing forward declaration. - -2002-12-26 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/warn/inline1.C: New test. - * g++.old-deja/g++.brendan/crash64.C: Remove spurious inlines. - * g++.old-deja/g++.jason/synth10.C: Likewise. - * g++.old-deja/g++.mike/net31.C: Likewise. - * g++.old-deja/g++.mike/p8786.C: Likewise. - - * g++.dg/template/friend10.C: New test. - * g++.dg/template/conv5.C: New test. - -2002-12-24 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/lookup/scoped3.C: New test. - - * g++.dg/lookup/decl1.C: New test. - * g++.dg/lookup/decl2.C: New test. - -2002-12-24 Joseph S. Myers <jsm@polyomino.org.uk> - - * g++.dg/init/new1.C, g++.dg/template/alignof1.C, - gcc.c-torture/compile/20021015-1.c, - gcc.c-torture/compile/20021015-2.c, - gcc.c-torture/compile/20021123-1.c, - gcc.c-torture/compile/20021123-2.c, - gcc.c-torture/compile/20021123-3.c, - gcc.c-torture/compile/20021123-4.c, - gcc.c-torture/execute/20021024-1.c: Add tests previously added - only to 3.1 or 3.2 branch. - -2002-12-23 Mark Mitchell <mark@codesourcery.com> - - * gcc.dg/i386-bitfield3.c: New test. - - * gcc.dg/i386-bitfield2.c: New test. - -2002-12-22 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/parse/conv_op1.C: New test. - -2002-12-21 Josef Zlomek <zlomekj@suse.cz> - - * gcc.c-torture/compile/20021220-1.c: Removed until bug fix is - approved. - -2002-12-20 Josef Zlomek <zlomekj@suse.cz> - - * gcc.c-torture/compile/20021220-1.c: New test. - -2002-12-19 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * gcc.dg/i386-fastcall-1.c: New. - -2002-12-19 Eric Botcazou <ebotcazou@libertysurf.fr> - - * gcc.c-torture/execute/20021219-1.c: New test. - -2002-12-19 Eric Botcazou <ebotcazou@libertysurf.fr> - - * gcc.dg/i386-pic-1.c: New test. - -2002-12-18 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - PR c++/8099 - * g++.dg/template/friend9.C: New test. - -2002-11-18 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - PR c++/3663 - * g++.dg/template/access7.C: New test. - -2002-12-18 Nick Clifton <nickc@redhat.com> - - * lib/g++.exp (g++_include_flags): Only invoke testsuite_flags if - the libstdc++-v3 directory has been found. - -2002-12-12 Devang Patel <dpatel@apple.com> - * gcc.dg/darwin-ld-1.c: New test. - * gcc.dg/darwin-ld-2.c: New test. - * gcc.dg/darwin-ld-3.c: New test. - * gcc.dg/darwin-ld-4.c: New test. - * gcc.dg/darwin-ld-5.c: New test. - -2002-12-12 Eric Botcazou <ebotcazou@libertysurf.fr> - - * gcc.c-torture/compile/20021212-1.c: New test. - -2002-12-11 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/fshort-wchar: New test. - -2002-12-10 Mark Mitchell <mark@codesourcery.com> - - PR c++/8372 - * g++.dg/template/dtor1.C: New test. - - * g++.old-deja/g++.ext/memconst.C: Use old-deja, not dg, error - markers. - -2002-12-10 Jakub Jelinek <jakub@redhat.com> - - * g++.dg/parse/parameter-declaration-1.C: Expect error on last line. - -2002-12-09 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/template/static1.C: New test. - * g++.dg/template/static2.C: New test. - * g++.old-deja/g++.ext/memconst.C: New test. - -2002-12-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * g++.dg/special/conpr-2.C: Expect failure on solaris2. - * g++.dg/special/ecos.exp (conpr-3.C): Likewise. - * g++.dg/special/initp1.C: Likewise. - -2002-12-06 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20021204-1.c: New test. - -2002-12-04 Geoffrey Keating <geoffk@apple.com> - - * gcc.dg/ppc-fmadd-1.c: New file. - * gcc.dg/ppc-fmadd-2.c: New file. - * gcc.dg/ppc-fmadd-3.c: New file. - -2002-12-04 Eric Botcazou <ebotcazou@libertysurf.fr> - - * gcc.c-torture/compile/20021204-1.c: New test. - -2002-12-03 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/inherit/covariant2.C: New test. - * g++.dg/inherit/covariant3.C: New test. - * g++.dg/inherit/covariant4.C: New test. - * g++.dg/inherit/covariant1.C: Remove XFAIL. - * g++.old-deja/g++.robertl/eb17.C: Likewise. - -2002-12-03 Mark Mitchell <mark@codesourcery.com> - - PR c++/8688 - * g++.dg/init/brace3.C: New test. - -2002-12-02 Kazu Hirata <kazu@cs.umass.edu> - - * gcc.dg/20020210-1.c: Fix a comment typo. - -2002-12-02 Mark Mitchell <mark@codesourcery.com> - - PR c++/8720 - * g++.dg/parse/defarg1.C: New test. PR c++/8615 * g++.dg/template/char1.C: New test. @@ -10029,457 +8706,7 @@ * g++.dg/overload/member1.C: New test. -2002-09-30 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/abi/empty7.C: New test. - * g++.dg/init/pm2.C: Likewise. - -2002-09-29 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/rtti/crash1.C: New test. - -2002-09-29 Hans-Peter Nilsson <hp@bitrange.com> - - * gcc.dg/sibcall-1.c, gcc.dg/sibcall-2.c, gcc.dg/sibcall-3.c, - gcc.dg/sibcall-4.c: New tests. - -2002-09-28 Roger Sayle <roger@eyesopen.com> - - * gcc.c-torture/execute/20020720-1.x: No longer skip test on - powerpc and MMIX targets. - -2002-09-27 Zack Weinberg <zack@codesourcery.com> - - * gcc.dg/cpp/20020927-1.c: New. - -2002-09-26 David S. Miller <davem@redhat.com> - - * gcc.c-torture/compile/trunctfdf.c: New. - -2002-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * lib/target-supports.exp (check_weak_available): Handle solaris2. - -2002-09-27 Alan Modra <amodra@bigpond.net.au> - - * gcc.c-torture/execute/loop-15.c: New. - -2002-09-26 Janis Johnson <janis187@us.ibm.com> - - * README.QMTEST: Fix typo. - -2002-09-26 Ulrich Weigand <uweigand@de.ibm.com> - - * gcc.dg/20020926-1.c: New test. - -2002-09-25 David S. Miller <davem@redhat.com> - - PR target/7842 - * gcc.c-torture/execute/shiftdi.c: New test. - -2002-09-26 Richard Earnshaw <rearnsha@arm.com> - - * lib/gcc.exp (gcc_init): Use a filename for the testglue that is - unique to the tool. - * lib/g77.exp (g77_init): Likewise. - * lib/g++.exp (g++_init): Likewise. - * lib/objc.exp (objc_init): Likewise. - -2002-09-25 Mark Mitchell <mark@codesourcery.com> - - * gcc/testsuite/g++.dg/abi/empty5.C: New test. - * gcc/testsuite/g++.dg/abi/empty6.C: New test. - * gcc/testsuite/g++.dg/abi/vbase12.C: New test. - -2002-09-25 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/execute/ieee/20010226-1.c: Early exit for - too-small long double. - -2002-09-23 Hans-Peter Nilsson <hp@axis.com> - - * gcc.dg/20020919-1.c: New test. - -2002-09-23 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/abi/bitfield6.C: New test. - * g++.dg/abi/bitfield7.C: New test. - * g++.dg/abi/bitfield8.C: New test. - * g++.dg/abi/vbase11.C: New test. - -2002-09-22 John David Anglin <dave@hiauly1.hia.nrc.ca> - - * gcc.dg/20020219-1.c: Add "-mdisable-indexing" option for target - hppa*-*-hpux*. Update test comment. - -2002-09-20 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/tls/struct-1.c: New test. - -2002-09-20 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/tr-warn2.c: Update. - -2002-09-20 Richard Earnshaw <rearnsha@arm.com> - - * gcc.c-torture/execute/20020720-1.x: Skip test on ARM-based systems. - -2002-09-20 Richard Earnshaw <rearnsha@arm.com> - - * gcc.c-torture/execute/990208-1.x: XFAIL this at -O3 for ARM-based - systems. - -2002-09-20 Hans-Peter Nilsson <hp@bitrange.com> - - * gcc.c-torture/execute/ieee/mzero3.c: New test. - - * lib/scanasm.exp (scan-assembler-dem, scan-assembler-dem-not): - Adjust for c++filt moved to binutils. Remove spurious duplicate - setting of cxxfilt. - -2002-09-19 Geoffrey Keating <geoffk@apple.com> - - * gcc.dg/20020312-2.c: Update for darwin. - -2002-09-18 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/crash32.C: Mark ICE. - -2002-09-17 Nicola Pero <n.pero@mi.flashnet.it> - - * objc.dg/comp-types-1.m: New test. - * objc.dg/comp-types-2.m: New test. - * objc.dg/comp-types-3.m: New test. - * objc.dg/comp-types-4.m: New test. - * objc.dg/comp-types-5.m: New test. - * objc.dg/comp-types-6.m: New test. - -2002-09-17 John David Anglin <dave@hiauly1.hia.nrc.ca> - - * gcc.c-torture/execute/strct-stdarg-1.x: Remove file. - -2002-09-16 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/other/do1.C: New test. - - * g++.dg/template/subst1.C: New test. - -2002-09-16 Steve Ellcey <sje@cup.hp.com> - - * gcc.dg/20020312-2.c: Change __parisc__ to __hppa__. - -2002-09-16 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/template/qualttp20.C: Adjust expected errors. - * g++.old-deja/g++.jason/report.C: Likewise. - * g++.old-deja/g++.other/qual1.C: Likewise. - - * g++.dg/lookup/scoped2.C: New test. - - * g++.dg/ext/asm3.C: New test. - -2002-09-16 Richard Earnshaw <rearnsha@arm.com> - - * objc.dg/bitfield-2.m (dg-options): Add -fsigned-char. - -2002-09-16 Kazu Hirata <kazu@cs.umass.edu> - - * ChangeLog: follow spelling conventions. - * g++.old-deja/g++.abi/ptrmem.C: Likewise. - * g++.old-deja/g++.bugs/900210_05.C: Likewise. - * g++.old-deja/g++.bugs/900211_04.C: Likewise. - * g++.old-deja/g++.bugs/900321_02.C: Likewise. - * g++.old-deja/g++.bugs/900404_02.C: Likewise. - * g++.old-deja/g++.bugs/900520_06.C: Likewise. - * g++.old-deja/g++.law/global-init1.C: Likewise. - * g++.old-deja/g++.other/delete4.C: Likewise. - * g++.old-deja/g++.other/inline21.C: Likewise. - * g++.old-deja/g++.other/singleton.C: Likewise. - * g77.dg/strlen0.f: Likewise. - * g77.f-torture/compile/20010519-1.f: Likewise. - * g77.f-torture/compile/980310-4.f: Likewise. - * gcc.c-torture/compile/20000605-1.c: Likewise. - * gcc.c-torture/execute/20020225-1.c: Likewise. - * gcc.dg/c90-hexfloat-2.c: Likewise. - * gcc.dg/c99-bool-1.c: Likewise. - * gcc.dg/c99-hexfloat-2.c: Likewise. - * gcc.dg/dll-2.c: Likewise. - * gcc.dg/wtr-union-init-1.c: Likewise. - * gcc.dg/wtr-union-init-2.c: Likewise. - * gcc.dg/wtr-union-init-3.c: Likewise. - * gcc.dg/cpp/avoidpaste1.c: Likewise. - * gcc.dg/cpp/defined.c: Likewise. - * gcc.dg/cpp/macsyntx.c: Likewise. - * gcc.dg/cpp/paste2.c: Likewise. - * gcc.dg/cpp/trad/defined.c: Likewise. - * gcc.dg/format/c90-printf-1.c: Likewise. - * gcc.dg/format/c90-scanf-1.c: Likewise. - * gcc.dg/format/c99-printf-1.c: Likewise. - * gcc.dg/format/c99-scanf-1.c: Likewise. - * gcc.misc-tests/gcov-8.c: Likewise. - * lib/profopt.exp: Likewise. - -2002-09-15 Krister Walfridsson <cato@df.lth.se> - - * lib/old-dejagnu.exp (old-dejagnu) Improve test for ICE. - -2002-09-15 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/inherit/using2.C: New test. - -2002-09-15 Kazu Hirata <kazu@cs.umass.edu> - - * ChangeLog: Follow spelling conventions. - * g++.dg/template/friend4.C: Likewise. - * g++.old-deja/g++.pt/crash67.C: Likewise. - * gcc.c-torture/execute/20000801-4.c: Likewise. - * gcc.dg/c90-digraph-1.c: Likewise. - * gcc.dg/c94-digraph-1.c: Likewise. - * gcc.dg/c99-digraph-1.c: Likewise. - * gcc.dg/cpp/line5.c: Likewise. - * gcc.dg/cpp/multiline.c: Likewise. - * gcc.dg/cpp/trad/literals-1.c: Likewise. - * gcc.dg/format/attr-3.c: Likewise. - * gcc.dg/format/c90-scanf-3.c: Likewise. - * gcc.dg/format/ext-4.c: Likewise. - -2002-09-15 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/template/pretty1.C: New test. - -2002-09-14 Alan Modra <amodra@bigpond.net.au> - - * gcc.c-torture/execute/struct-cpy-1.c: New test. - -2002-09-13 Matt Austern <austern@apple.com> - - * testsuite/g++.dg/other/constref[12].C: New, regression tests for - passing a cast expression to a function by const reference. - -2002-09-13 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/template/deduce1.C: New test. - -2002-09-13 Kazu Hirata <kazu@cs.umass.edu> - - * gcc.c-torture/execute/simd-1.c: Force all use of int to - 32-bit int. - -2002-09-10 John David Anglin <dave@hiauly1.hia.nrc.ca> - - * gcc.dg/struct-ret-1.c: Add prototype for exit function and correct - usage. - -2002-09-10 Richard Earnshaw <rearnsha@arm.com> - - * gcc.c-torture/compile/20020910-1.c: New test. - -2002-09-10 Frank Ch. Eigler <fche@redhat.com> - - * gcc.c-torture/execute/20010915-1.c: Correct typo in abort call. - -2002-09-10 Andreas Jaeger <aj@suse.de> - - * gcc.dg/20020312-2.c: Adjust for x86-64. - -2002-09-08 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.dg/7388.f: New test case for PR 7388. - -2002-09-07 Ansgar Esztermann <ansgar@thphy.uni-duesseldorf.de> - - * gcc.dg/compare2.c: Remove xfail from cases 10 and 12. - -2002-09-05 Ziemowit Laski <zlaski@apple.com> - - * objc.dg/proto-lossage-1.m: New test. - -2002-09-06 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/_Pragma4.c: Fix typo. - -2002-09-06 Nicola Pero <n.pero@mi.flashnet.it> - - * objc/execute/formal_protocol-6.x: Removed. This testcase is now - expected to pass. - -2002-09-06 Stan Shebs <shebs@apple.com> - David Edelsohn <edelsohn@gnu.org> - - * gcc.dg/weak: New directory. - * gcc.dg/weak-[1-9].c: Move to new directory, remove all - target-specific xfail bits. - * gcc.dg/typeof-2.c: Move to new directory. - * gcc.dg/weak.exp: New expect script. - -2002-09-06 Alan Modra <amodra@bigpond.net.au> - - * gcc.c-torture/execute/extzvsi.c: New test. - -2002-09-05 Stan Shebs <shebs@apple.com> - - * gcc.dg/weak-1.c: xfail on Darwin. - * gcc.dg/weak-2.c: Ditto. - * gcc.dg/weak-3.c: Ditto. - * gcc.dg/weak-4.c: Ditto. - * gcc.dg/weak-5.c: Ditto. - * gcc.dg/weak-6.c: Ditto. - * gcc.dg/weak-7.c: Ditto. - * gcc.dg/weak-8.c: Ditto. - * gcc.dg/weak-9.c: Ditto. - -2002-09-05 J"orn Rennecke <joern.rennecke@superh.com> - - * gcc.c-torture/execute/loop-14.c: New test. - -2002-09-04 Jakub Jelinek <jakub@redhat.com> - - * g++.dg/other/cxa-atexit1.C: New test. - - * gcc.dg/typeof-2.c: New test. - -2002-09-03 Roger Sayle <roger@eyesopen.com> - - * gcc.dg/builtins-2.c: New testcase. - * gcc.dg/builtins-3.c: New testcase. - -2002-09-03 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/_Pragma4.c: New test. - -2002-09-03 Nicola Pero <n.pero@mi.flashnet.it> - - * objc/execute/nil_method-1.m: New testcase. - -2002-09-01 Nicola Pero <n.pero@mi.flashnet.it> - - * objc/execute/class-tests-1.h (test_class_with_superclass): Call - [Object class], not [Object initialize]. - -2002-08-31 Roger Sayle <roger@eyesopen.com> - Hans-Peter Nilsson <hp@bitrange.com> - - * gcc.c-torture/execute/20020720-1.x: Skip test on - mmix-knuth-mmixware. Correct comment. - -2002-08-27 Mark Mitchell <mark@codesourcery.com> - - * testsuite/g++.dg/abi/bitfield5.C: New test. - * testsuite/g++.dg/abi/vbase10.C: Likewise. - -2002-08-27 Nicola Pero <n.pero@mi.flashnet.it> - - * objc.dg/undeclared-selector.m: New test. - -2002-08-27 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/other/offsetof1.C: Avoid cast warning. - -2002-08-26 Ziemowit Laski <zlaski@apple.com> - - * objc.dg/super-class-2.m: New test. - -2002-08-24 Matt Austern <austern@apple.com> - - * g++.dg/ext/lvaddr.C: New test. - * g++.dg/ext/lvcast.C: New test. - -2002-08-22 Mark Mitchell <mark@codesourcery.com> - - * testsuite/g++.dg/inherit/cond1.C: New test. - -2002-08-22 Geoffrey Keating <geoffk@redhat.com> - - * gcc.dg/noncompile/incomplete-1.c: New test. - -2002-08-21 Joseph S. Myers <jsm@polyomino.org.uk> - - * gcc.dg/typespec-1.c: New test. - -2002-08-20 Devang Patel <dpatel@apple.com> - * objc.dg/proto-hier-2.m: New test. - -2002-08-19 Ziemowit Laski <zlaski@apple.com> - - * objc.dg/bitfield-1.m: New test. - * objc.dg/bitfield-2.m: New test. - -2002-08-17 Joseph S. Myers <jsm@polyomino.org.uk> - - * gcc.dg/c90-flex-array-1.c, gcc.dg/c99-flex-array-3.c, - gcc.dg/c99-flex-array-4.c: New tests. - -2002-08-16 Stan Shebs <shebs@apple.com> - - * objc/execute/selector-1.m: Add __NEXT_RUNTIME__ case. - -2002-08-15 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/typeof-1.c: New test. - * g++.dg/ext/typeof2.C: New test. - -2002-08-15 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/other/offsetof1.C: New test. - -2002-08-14 Richard Henderson <rth@redhat.com> - - * gcc.dg/tls/diag-3.c: Fix expected message strings. - -2002-08-14 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/_Pragma3.c: New test. - -2002-08-13 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/template/inherit3: New test. - -2002-08-10 Nathan Sidwell <nathan@codesourcery.com> - - * gcc.dg/bitfld-4.c: Add blank options. - -2002-08-09 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/template/crash1.C: New test. - -2002-08-08 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/tls/opt-2.c: New test. - -2002-08-08 Devang Patel <dpatel@apple.com> - - * objc.dg/selector-1.m : New test - -2002-08-08 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/abi/bitfield4.C: New test. - * gcc.dg/bitfld-4.c: New test. - -2002-08-08 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/other/packed1.C: New test. - -2002-08-07 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/abi/offsetof.C: Tweak error messages. - * g++.old-deja/g++.mike/p10769a.C: Likewise. - -2002-08-08 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/bitfld-3.c: New test. - -2002-08-07 Jakub Jelinek <jakub@redhat.com> - Richard Henderson <rth@redhat.com> - - * gcc.dg/i386-bitfield1.c: New test. - * g++.dg/abi/bitfield3.C: Update. - -2002-08-07 Neil Booth <neil@daikokuya.co.uk> - - * objc.dg/const-str-2.m: Update. - * gcc.dg/cpp/c++98.c: Change to C extension. - * gcc.dg/cpp/c++98-pedantic.c: Similarly. - * gcc.dg/cpp/cpp.exp: Process .C extensions too. +2002-09-30 Mark Mitchell <mark@code 2002-08-06 Aldy Hernandez <aldyh@redhat.com> @@ -10778,601 +9005,7 @@ * gcc.dg/cpp/trad/directive.c: Add test. * gcc.dg/cpp/trad/macroargs.c: Add test. - * gcc.dg/cpp/trad/recurse-3.c: Add tests. - -2002-07-02 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/cmdlne-M.c: New test. - -2002-07-02 Ziemowit Laski <zlaski@apple.com> - - * objc.dg/desig-init-1.m: New test. - -2002-07-02 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - PR c++/6716 - * g++.dg/template/instantiate1.C: New test. - -2002-07-01 Mark Mitchell <mark@codesourcery.com> - - PR c++/7112 - * g++.dg/template/sizeof2.C: New test. - -2002-07-01 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/trad/cmdlne-dD.c, gcc.dg/cpp/trad/cmdlne-dM.c, - gcc.dg/cpp/trad/include.c: New tests. - -2002-07-01 Hans-Peter Nilsson <hp@axis.com> - - PR target/7177 - * gcc.c-torture/compile/20020701-1.c: New test. - -2002-07-01 Stan Shebs <shebs@apple.com> - - * lib/objc.exp (objc_target_compile): Add the -I path to ObjC - header here... - * lib/objc-torture.exp (objc-torture-compile): ...instead of here - (objc-torture-execute): or here. - -2002-07-01 J"orn Rennecke <joern.rennecke@superh.com> - - * gcc.c-torture/execute/arith-rand-ll.c: New test. - -2002-07-01 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/trad/escaped-nl.c: New test. - -2002-06-30 Devang Patel <dpatel@apple.com> - - * objc.dg/fsyntax-only.m: New test. - -2002-06-27 Mark Mitchell <mark@codesourcery.com> - - PR c++/6695 - * g++.dg/template/friend7.C: New file. - -2002-06-27 Aldy Hernandez <aldyh@redhat.com> - - * gcc.c-torture/execute/string-opt-8.c (strncmp): Fix typo in - return type. - -2002-06-27 J"orn Rennecke <joern.rennecke@superh.com> - - * gcc.c-torture/execute/simd-2.c (i, j): Add initializer elements to - avoid division by zero. - -2002-06-27 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/Wunknownprag.c: New tests. - -2002-06-25 J"orn Rennecke <joern.rennecke@superh.com> - - * gcc.c-torture/execute/simd-2.c: New test. - -2002-06-25 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/mi7.c, gcc.dg/cpp/mi7a.h, gcc.dg/cpp/mi7b.h, - gcc.dg/cpp/trad/builtins.c, gcc.dg/cpp/trad/builtins.h, - gcc.dg/cpp/trad/cmdlne-C.c, gcc.dg/cpp/trad/cmdlne-C2.c, - gcc.dg/cpp/trad/maccom1.c, gcc.dg/cpp/trad/maccom2.c, - gcc.dg/cpp/trad/maccom3.c, gcc.dg/cpp/trad/maccom4.c, - gcc.dg/cpp/trad/maccom6.c, gcc.dg/cpp/trad/mi1.c, - gcc.dg/cpp/trad/mi1c.h, gcc.dg/cpp/trad/mi1nd.h, - gcc.dg/cpp/trad/mi1ndp.h, gcc.dg/cpp/trad/mi1x.h, - gcc.dg/cpp/trad/mi2.c, gcc.dg/cpp/trad/mi2a.h, - gcc.dg/cpp/trad/mi2b.h, gcc.dg/cpp/trad/mi2c.h - gcc.dg/cpp/trad/mi3.c, gcc.dg/cpp/trad/mi3.def, - gcc.dg/cpp/trad/mi3.h, gcc.dg/cpp/trad/mi4.c, - gcc.dg/cpp/trad/mi5.c, gcc.dg/cpp/trad/mi6.c, - gcc.dg/cpp/trad/mi6a.h, gcc.dg/cpp/trad/mi6b.h, - gcc.dg/cpp/trad/mi6c.h, gcc.dg/cpp/trad/mi6d.h, - gcc.dg/cpp/trad/mi6e.h, gcc.dg/cpp/trad/mi7.c, - gcc.dg/cpp/trad/mi7a.h, gcc.dg/cpp/trad/mi7b.h: New tests. - -2002-06-24 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/trad/argcout.c, gcc.dg/cpp/trad/assembler.S, - gcc.dg/cpp/trad/argcout.c, gcc.dg/cpp/trad/funlike-4.c, - gcc.dg/cpp/trad/null-drctv.c, gcc.dg/cpp/trad/recurse-1.c, - gcc.dg/cpp/trad/recurse-2.c, gcc.dg/cpp/trad/recurse-3.c: - New tests. - * gcc.dg/cpp/trad/directive.c: Update. - -2002-06-23 Andreas Jaeger <aj@suse.de> - - * gcc.c-torture/execute/complex-6.c: New. - -2002-06-22 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/trad/comment-2.c. gcc.dg/cpp/trad/funlike-2.c, - gcc.dg/cpp/trad/funlike.c, gcc.dg/cpp/trad/funlike-3.c, - gcc.dg/cpp/trad/literals-1.c, gcc.dg/cpp/trad/literals-2.c, - gcc.dg/cpp/trad/macroargs.c, gcc.dg/cpp/trad/quote.c: New tests. - -2002-06-21 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/trad: New directory with traditional tests copied - from parent directory. - * gcc.dg/cpp/assert_trad1.c, gcc.dg/cpp/assert_trad2.c, - gcc.dg/cpp/assert_trad3.c, gcc.dg/cpp/defined_trad.c, - gcc.dg/cpp/hash2.c, gcc.dg/cpp/tr-define.c, gcc.dg/cpp/tr-direct.c, - gcc.dg/cpp/tr-sign.c, gcc.dg/cpp/tr-str.c, gcc.dg/cpp/uchar-2.c: - Move to trad/ and rename. - * gcc.dg/cpp/trad/__STDC__.c, gcc.dg/cpp/trad/comment.c, - gcc.dg/cpp/trad/escaped-eof.c, gcc.dg/cpp/trad/redef1.c, - gcc.dg/cpp/trad/redef2.c: New tests. - * gcc.dg/cpp/trad/trad.exp: New driver. - -2002-06-20 Neil Booth <neil@daikokuya.co.uk> - - * gcc.dg/cpp/assert_trad1.c, gcc.dg/cpp/assert_trad2.c, - gcc.dg/cpp/assert_trad3.c, gcc.dg/cpp/defined_trad.c, - gcc.dg/cpp/hash2.c, gcc.dg/cpp/tr-define.c, gcc.dg/cpp/tr-direct.c, - gcc.dg/cpp/tr-sign.c, gcc.dg/cpp/tr-str.c, gcc.dg/cpp/uchar-2.c: - Remove. - -2002-06-20 Richard Sandiford <rsandifo@redhat.com> - - * gcc.dg/20020620-1.c: New test. - -2002-06-20 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - * g++.dg/template/ttp4.C: New test. - -2002-06-19 Jakub Jelinek <jakub@redhat.com> - - * g++.dg/opt/vt1.C: Fix regexp. - -2002-06-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/pure-1.c: Make functions static again. - Don't use attribute `noinline'. - -2002-06-18 Hans-Peter Nilsson <hp@axis.com> - - * gcc.c-torture/execute/20020615-1.c: Fix typo in comment. - -2002-06-18 Aldy Hernandez <aldyh@redhat.com> - - * gcc.c-torture/execute/simd-1.c: New. - - * gcc.dg/simd-1.c: New. - -2002-06-18 Hans-Peter Nilsson <hp@axis.com> - - * gcc.c-torture/execute/20020615-1.c: Correct bug-description. - -2002-06-16 Richard Henderson <rth@redhat.com> - - * g++.dg/ext/anon-struct1.C: New. - * g++.dg/ext/anon-struct2.C: New. - * g++.dg/ext/anon-struct3.C: New. - * gcc.dg/anon-struct-1.c: New. - * gcc.dg/anon-struct-2.c: New. - * gcc.dg/anon-struct-3.c: New. - * gcc.dg/20011008-1.c: Adjust warning text. - * gcc.dg/20020527-1.c: Add -fms-extensions. - -2002-06-16 Richard Henderson <rth@redhat.com> - - * gcc.dg/20020531-1.c: Add LL specifier to avoid warning. - -2002-06-15 Hans-Peter Nilsson <hp@axis.com> - - * gcc.c-torture/execute/20020615-1.c: New test. - -2002-06-15 Roger Sayle <roger@eyesopen.com> - - * gcc.c-tortuture/execute/compare-1.c: New test case. - * gcc.c-tortuture/execute/compare-2.c: New test case. - * gcc.c-tortuture/execute/compare-3.c: New test case. - -2002-06-13 Richard Henderson <rth@redhat.com> - - * g++.old-deja/g++.abi/vtable2.C (INC_VDATA): New. Define for - ia64 ilp32. - -2002-06-12 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - * g++.dg/template/typename2.C: Update error message. - -2002-06-12 Hans-Peter Nilsson <hp@axis.com> - - * gcc.c-torture/execute/20020611-1.c: New test. - -2002-06-11 Bob Wilson <bob.wilson@acm.org> - - * g++.old-deja/g++.pt/static11.C: Add xtensa-*-elf* to the - list of targets to skip. - -2002-06-10 Bob Wilson <bob.wilson@acm.org> - - * gcc.c-torture/compile/20001226-1.x: Only xfail for Xtensa - targets if not optimizing. - -2002-06-10 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/compile/20020605-1.c: New test. - - * g++.dg/opt/vt1.C: New test. - - * gcc.dg/20020531-1.c: New test. - - * gcc.dg/20020530-1.c: New test. - - * gcc.dg/20020527-1.c: New test. - - * g++.dg/opt/cse1.C: New test. - -2002-06-07 Roger Sayle <roger@eyesopen.com> - - * gcc.dg/20020607-2.c: New test case. - -2002-06-07 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/compile/20020604-1.c: New test. - -2002-06-04 Richard Henderson <rth@redhat.com> - - * gcc.dg/alpha-base-1.c: Add ext/ins/msk/umulh cases. - * gcc.dg/alpha-max-1.c, gcc.dg/alpha-max-2.c: Use -mcpu=ev67. - * gcc.dg/alpha-cix-1.c, gcc.dg/alpha-cix-2.c: New. - -2002-06-04 Aldy Hernandez <aldyh@redhat.com> - - * gcc.dg/altivec-2.c: Remove test for invalid vector type V2DF. - -2002-06-03 Richard Henderson <rth@redhat.com> - - * gcc.dg/alpha-base-1.c, gcc.dg/alpha-base-2.c: New. - * gcc.dg/alpha-max-1.c, gcc.dg/alpha-max-2.c: New. - -2002-06-02 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/execute/pure-1.c: Don't mark any of the - test functions static. - -2002-06-02 Andreas Jaeger <aj@suse.de> - - * gcc.c-torture/execute/loop-3c.x: Remove, the test should pass - now. - -2002-06-02 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/wtr-int-type-1.c, gcc.dg/wtr-suffix-1.c, - gcc.dg/cpp/paste4.c, gcc.dg/cpp/sysmac2.c: - Update for mofified diagnostics. - * gcc.dg/c99-intconst-1.c: No longer fail. - -2002-06-02 Richard Henderson <rth@redhat.com> - - * gcc.dg/uninit-A.c: Remove xfail markers. - -2002-06-01 Roger Sayle <roger@eyesopen.com> - - * gcc.dg/fnegate-1.c: New test case. - -2002-05-30 Osku Salerma <osku@iki.fi> - - * gcc.c-torture/execute/mayalias-1.c: New file. - -2002-05-29 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/c++98-pedantic.c, gcc.dg/cpp/c89-pedantic.c, - gcc.dg/cpp/c94-pedantic.c, gcc.dg/cpp/gnuc89-pedantic.c, - gcc.dg/cpp/if-1.c: Update for modified diagnostics. - -2002-05-29 Hans-Peter Nilsson <hp@axis.com> - - * gcc.c-torture/execute/20020529-1.c: New test. - -2002-05-27 Richard Henderson <rth@redhat.com> - - * g++.dg/ext/attrib6.C: New test case. - -2002-05-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/pure-1.c: New test. - -2002-05-27 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/arith-2.c: Remove. - -2002-05-27 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/arith-2.c, gcc.dg/cpp/arith-3.c: New tests. - * gcc.dg/cpp/if-3.c: Remove. - -2002-05-26 Jakub Jelinek <jakub@redhat.com> - - * g++.dg/opt/cse2.C: New test. - -2002-05-26 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/arith-1.c: New semantic tests. - * gcc.dg/cpp/if-1.c: Update. - -2002-05-24 Ben Elliston <bje@redhat.com> - - * lib/c-torture.exp (c-torture-execute): Handle multiple sources. - -2002-05-24 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/verbose-asm.c: New test. - -2002-05-24 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/paste12.c: New test. - -2002-05-23 Neil Booth <neil@daikokuya.demon.co.uk> - - * g++.dg/parse/named_ops.C: New test. - -2002-05-23 Mark Mitchell <mark@codesourcery.com> - - * gcc/testsuite/gcc.dg/weak-8.c: New test. - -2002-05-23 J"orn Rennecke <joern.rennecke@superh.com> - - * gcc.dg/weak-2.c: Allow optional leading underscore - in scan-assembler symbol name. - * gcc.dg/weak-3.c: Likewise. - * gcc.dg/weak-4.c: Likewise. - * gcc.dg/weak-5.c: Likewise. - -2002-05-23 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/20020523-1.c: New test. - -2002-05-23 Neil Booth <neil@daikokuya.demon.co.uk> - - * objc.dg/const-str-2.m: Update now that we stop after - a command line error. - -2002-05-22 Richard Henderson <rth@redhat.com> - - * g++.dg/dg.exp: Fix typo in test pruneing. - -2002-05-22 Richard Henderson <rth@redhat.com> - - * g++.dg/dg.exp: Prune the tls subdirectory. - * g++.dg/tls/tls.exp, g++.dg/tls/trivial.C: New. - * g++.dg/tls/diag-1.C, g++.dg/tls/diag-2.C: New. - * g++.dg/tls/init-1.C: New. - -2002-05-22 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/20020517-1.c: New test. - -2002-05-21 Richard Henderson <rth@redhat.com> - - * gcc.dg/tls/tls.exp, gcc.dg/tls/trivial.c, gcc.dg/tls/diag-1.c, - gcc.dg/tls/diag-2.c, gcc.dg/tls/init-1.c: New directory and files. - -2002-05-21 Brian R. Gaeke <brg@dgate.ORG> - - * g++.dg/other/copy2.C: New test. - -2002-05-20 J"orn Rennecke <joern.rennecke@superh.com> - - * gcc.c-torture/execute/memcpy-2.c (SEQUENCE_LENGTH): Define. - (MAX_COPY): Bump up to 10 times sizeof (long long). - (main): Use a pattern of SEQUENCE_LENGTH different characters to copy. - - * gcc.c-torture/execute/memset-1.c (MAX_COPY): Bump up to 10 times - sizeof (long long). - - * gcc.c-torture/execute/strcpy-1.c: New test. - -2002-05-19 Jason Merrill <jason2redhat.com> - - * g++.dg/ext/oper1.C: New test. - -2002-05-20 David Billinghurst <David.Billinghurst@riotinto.com> -2002-05-19 Mark Mitchell <mitchell@doubledemon.codesourcery.com> - - * README.QMTEST: New file. - - * g++.dg/warn/Wshadow-1.C: Remove unncessary dg-error line. - -2002-05-19 Andreas Jaeger <aj@suse.de> - - * gcc.c-torture/execute/loop-2c.x: Remove, the test should pass - now. - * gcc.c-torture/execute/loop-2d.x: Likewise. - -2002-05-19 David Billinghurst <David.Billinghurst@riotinto.com> - - * gcc.dg/weak-2.c: xfail warnings for platforms that don't - support weak symbols. - * gcc.dg/weak-4.c: Likewise - * gcc.dg/weak-6.c: Likewise - -2002-05-16 David.Billinghurst <David.Billinghurst@riotinto.com> - - * gcc.dg/weak-3.c: Add dg-excess-error comment for - cygwin, coff and h8300-*-hms targets - * gcc.dg/weak-5.c: Likewise - * gcc.dg/weak-7.c: Likewise - -2002-05-16 Jason Merrill <jason@redhat.com> - - * lib/scanasm.exp (scan-assembler): Use upvar, not uplevel. - (scan-assembler-not, scan-assembler-dem): Likewise. - (scan-assembler-dem-not): Likewise. - -2002-05-15 Richard Henderson <rth@redhat.com> - - * gcc.dg/weak-5.c (vfoo1c, vfoo1g): Warn here. - -2002-05-15 Richard Henderson <rth@redhat.com> - - * gcc.dg/weak-5.c (vfoo1c): No warning here. - (vfoo1f): Warning here. - (vfoo1l): Don't redefine the alias. - -2002-05-14 Jason Merrill <jason@redhat.com>, Alexandre Oliva <aoliva@redhat.com> - - * g++.dg/init/pm1.C: New test. - -2002-05-12 David S. Miller <davem@redhat.com> - - * gcc.c-torture/execute/conversion.c (ldnear): Use long double - types. - -2002-05-10 Roger Sayle <roger@eyesopen.com> - - * gcc.c-torture/execute/20020510-1.c: New test case. - -2002-05-10 David S. Miller <davem@redhat.com> - - * gcc.c-torture/execute/conversion.c: Test long double too. - -2002-05-09 Jakub Jelinek <jakub@redhat.com> - - * lib/g77.exp (g77_link_flags): Append all multilib dirs containing - libgcc_s*.so.1 below gcc object dir to LD_LIBRARY_PATH. - * lib/g++.exp (g++_link_flags): Likewise. - * lib/objc.exp (objc_target_compile): Likewise. - -2002-05-09 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/poison.c: Update. - * gcc.dg/cpp/20000625-2.c: Remove. - * gcc.dg/cpp/direct2s.c: Remove final test. - -2002-05-08 Tom Rix <trix@redhat.com> - - * gcc.c-torture/execute/20020508-1.c: New test. - * gcc.c-torture/execute/20020508-2.c: New test. - * gcc.c-torture/execute/20020508-3.c: New test. - -2002-05-08 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/charconst-4.c: More tests. - -2002-05-08 Mark Mitchell <mark@codesourcery.com> - - PR c/6569 - * gcc.dg/weak-3.c: Update location of warning messages. - * gcc.dg/weak-5.c: Likewise. - -2002-05-06 Roger Sayle <roger@eyesopen.com> - - * gcc.c-torture/execute/20020506-1.c: New test case. - -2002-05-07 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/charconst-3.c: Correct tests accordingly. - -2002-05-06 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/charconst-3.c: Run, don't compile. - -2002-05-06 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/charconst-3.c: New test. - -2002-05-05 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/charconst.c: Update tests. - -2002-05-05 Tim Josling <tej@melbpc.org.au> - - * treelang: Added directory for new sample language treelang. Also - lib/treelang.exp: New file to signal treelang should be tested. - -2002-05-03 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/cpp/cmdlne-dM-M.c: New test. - * gcc.dg/cpp/cmdlne-dD-M.c: New test. - * gcc.dg/cpp/cmdlne-dN-M.c: New test. - * gcc.dg/cpp/cmdlne-dI-M.c: New test. - * gcc.dg/cpp/cmdlne-dI-M.h: New aux file. - * gcc.dg/cpp/cmdlne-dD-dM.c: New test. - * gcc.dg/cpp/cmdlne-dM-dD.c: New test. - -2002-05-03 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/format/xopen-2.c: New test. - -2002-05-03 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/20020503-1.c: New test. - -2002-05-02 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/init/dtor1.C: Make it tougher. - -2002-05-01 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/init/dtor1.C: New test. - -2002-05-02 Aldy Hernandez <aldyh@redhat.com> - - * gcc.dg/altivec-8.c: New. - -2002-05-01 Aldy Hernandez <aldyh@redhat.com> - - * gcc.dg/altivec-7.c: New. - -2002-04-29 Jakub Jelinek <jakub@redhat.com> - - * g++.dg/parse/typedef1.C: New test. - -2002-04-29 Mark Mitchell <mark@codesourcery.com> - - PR c++/6486 - * g++.dg/template/friend6.C: New test. - - PR c++/6492 - * g++.dg/init/copy1.C: New test. - -2002-04-29 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/warn/effc1.C: New test. - -2002-04-29 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/if-cexp.c: Add a test. - -2002-04-28 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/20020426-2.c: New test. - -2002-04-28 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/if-mop.c: Update. - * gcc.dg/cpp/if-mpar.c: Add test. - * gcc.dg/cpp/if-oppr.c: Update. - -2002-04-28 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> - - PR c/6343 - * gcc.dg/weak-[2-7].c: New tests. - -2002-04-26 Alexandre Oliva <aoliva@redhat.com> - - * gcc.dg/enum1.c: New test. - -2002-04-26 Mark Mitchell <mark@codesourcery.com> - - PR c++/6497 - * g++.dg/inherit/access2.C: New test. - -2002-04-26 Mark Mitchell <mark@codesourcery.com> - - PR bootstrap/6445 - * gcc.dg/20020426-1.c: New test. - -2002-04-26 Alexandre Oliva <aoliva@redhat.com> - - * g++.dg/abi/enum1.C: New test. - -2002-04-26 Richard Henderson <rth@redhat.com> - - * gcc.dg/c99-bool-1.c: Expect always true warning. + * gcc.dg/cpp/trad/rec 2002-04-25 Roger Sayle <roger@eyesopen.com> @@ -13857,153 +11490,7 @@ 2001-08-19 Jakub Jelinek <jakub@redhat.com> - * g++.dg/eh/template1.C: New test. - -2001-08-16 David Billinghurst <David.Billinghurst@riotinto.com> - - * g77.f-torture/compile/pr3743.x: Do not return 1 for xfail. - Fix thinko. - * g77.f-torture/execute/f90-intrinsic-bit.x: Do not return 1 - for xfail. - -2001-08-14 David Billinghurst <David.Billinghurst@riotinto.com> - - * lib/g77-dg.exp: Use prune.exp for common procedures - (g77-dg-prune): Replace prune_g77_output with prune_gcc_output - * lib/g77.exp: (g77-dg-prune) Remove - -2001-08-13 Jason Merrill <jason_merrill@redhat.com> - - * lib/scanasm.exp (scan-assembler*): Use expr instead of concat. - -2001-08-11 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - * g++.dg/template/unify1.C: New test. - -2001-08-07 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/abi/empty4.C: New test. - -2001-08-06 David Billinghurst <David.Billinghurst@riotinto.com> - - * g77.f-torture/execute/f90-intrinsic-bit.x: XFAIL on irix6.* and - solaris2.* - * g77.f-torture/compile/pr3743.x: Likewise - -2001-08-05 Gabriel Dos Reis <gdr@merlin.codesourcery.com> - - * g++.dg/other/using-declaration.C: New test. - -2001-08-05 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/tr-sign.c: New testcase. - -2001-08-05 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/19951025-1.c: Revert. - * gcc.dg/cpp/directiv.c: We no longer process directives that - interrupt macro arguments. - -2001-08-03 Zack Weinberg <zackw@stanford.edu> - - * gcc.dg/bconstp-1.c: New test. - -2001-08-03 Richard Henderson <rth@redhat.com> - - * g++.dg/eh/filter1.C, g++.dg/eh/filter2.C: New tests. - -2001-08-02 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/19951025-1.c: Update. - -2001-08-02 Jeffrey Oldham <oldham@codesourcery.com> - - * g77.dg/ff90-1.f (s): Fix reference of variable z, - should be x. - -2001-08-02 Nathan Sidwell <nathan@codesourcery.com> - - Kill -fhonor-std. - * g++.old-deja/g++.ns/ns14.C: Remove special options. - * g++.old-deja/g++.other/std1.C: Likewise. - * g++.old-deja/g++.robertl/eb133.C: Likewise. Add using directive. - -2001-08-01 David Billinghurst <David.Billinghurst@riotinto.com> - - * lib/g77.exp: Load gcc-defs.exp for common procedures - (g77_pass, g77_fail, g77_finish, g77_exit, - ${tool}_check_unsupported_p} Now redundant. Deleted. - -2001-08-01 David Billinghurst <David.Billinghurst@riotinto.com> - - * g77.dg/fbackslash.f - * g77.dg/fcase-preserve.f - * g77.dg/ff90-1.f - * g77.dg/ffixed-line-length-0.f - * g77.dg/ffixed-line-length-132.f - * g77.dg/ffixed-line-length-7.f - * g77.dg/ffixed-line-length-72.f - * g77.dg/ffixed-line-length-none.f - * g77.dg/ffree-form-1.f - * g77.dg/fno-backslash.f - * g77.dg/fno-f90-1.f - * g77.dg/fno-fixed-form-1.f - * g77.dg/fno-onetrip.f - * g77.dg/fno-typeless-boz.f - * g77.dg/fno-underscoring.f - * g77.dg/fno-vxt-1.f - * g77.dg/fonetrip.f - * g77.dg/ftypeless-boz.f - * g77.dg/fugly-assumed.f - * g77.dg/funderscoring.f - * g77.dg/fvxt-1.f - -2001-08-01 Ziemowit Laski <zlaski@apple.com> - - * objc.dg/fwd-proto-1.m: New. - * objc.dg/local-decl-1.m: New. - * objc.dg/naming-1.m: New. - * objc.dg/naming-2.m: New. - * objc.dg/proto-hier-1.m: New. - -2001-07-31 Hans-Peter Nilsson <hp@bitrange.com> - - * gcc.dg/c99-scope-2.c: Don't generally assume adding more - largest-type elements to a struct makes its size grow. - -2001-07-31 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/abi/vthunk1.C: New test. - -2001-07-31 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/abi/vbase8-22.C: New test. - -2001-07-31 Neil Booth <neil@cat.daikokuya.demon.co.uk> - - * gcc.dg/cpp/macro8.c: New test. - -2001-07-27 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/abi/vbase8-21.C: New test. - -2001-07-27 Nathan Sidwell <nathan@codesourcery.com> - - * g++.dg/abi/vbase8-10.C: New test. - -2001-07-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> - - * lib/g++.exp (g++_set_ld_library_path): Renamed to - ${tool}_set_ld_library_path. - Changed caller. - * lib/objc.exp (${tool}_set_ld_library_path): New, copied from - g++.exp. - -2001-07-26 Stan Cox <scox@redhat.com> - - * lib/g++.exp (g++_exit, g++_check_unsupported_p): Removed. - * lib/gcc.exp (gcc_check_compile, gcc_pass, gcc_fail, gcc_finish, - gcc_exit, gcc_check_unsupported_p): + * g++.dg/eh/ Moved to gcc-deps.exp * gcc-deps.exp: New file. @@ -14139,833 +11626,7 @@ * g77.f-torture/execute/f90-intrinsic-numeric.f: Fix pasto. * g77.f-torture/execute/f90-intrinsic-mathematical.f: Fix pasto. -2001-01-15 David Billinghurst <David.Billinghurst@riotinto.com> - - * g77.f-torture/execute/f90-intrinsic-numeric.f: New test. - * g77.f-torture/execute/f90-intrinsic-mathematical.f: New test. - -2001-07-14 Richard Henderson <rth@redhat.com> - - * gcc.dg/iftrap-1.c: New. - -2001-07-11 David Billinghurst <David.Billinghurst@riotinto.com> - - * g77.f-torture/execute/intrinsic77.f: New test. - -2001-07-11 Janis Johnson <janis@us.ibm.com> - - * gcc.misc-tests/gcov-3.c: New test. - -2001-07-11 Richard Sandiford <rsandifo@redhat.com> - - * gcc.c-torture/compile/20010711-1.c, - * gcc.c-torture/compile/20010711-2.c: New tests. - -2001-07-11 Richard Sandiford <rsandifo@redhat.com> - - * gcc.c-torture/execute/20010711-1.c: New test. - -2001-07-11 Ben Elliston <bje@redhat.com> - - * g++.old-deja/g++.other/enum5.C: New test. - -2001-07-10 Jason Merrill <jason_merrill@redhat.com> - - * lib/g++-dg.exp: Load file-format and target-supports like gcc. - (g++-dg-prune): Call prune_gcc_output. - * prune.exp: New file for prune_gcc_output. - * lib/g++.exp, lib/gcc.exp: Load it. - -2001-07-08 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/compile/20010701-1.c, - g++.old-deja/g++.ext/attrib6.C: New tests. - -2001-07-06 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/20010706-1.c: New test. - -2000-09-10 Michael Chamberlain <michael@chamberlain.net.au> - - * gcc.misc-tests/mg.exp (compiler_output): Support tcl 8.3.1. - -2001-06-28 Stan Shebs <shebs@apple.com> - - * gcc.dg/pragma-darwin.c: New test. - -2001-06-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> - - * lib/objc.exp (objc_target_compile): Don't need -lposix4 on any - Solaris 2.[678] system. - -2001-06-22 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/20010622-1.c: New test. - -2001-06-18 Stan Shebs <shebs@apple.com> - - * objc.dg: New directory. - * objc.dg/dg.exp: New file. - * objc.dg/alias.m: New. - * objc.dg/class-1.m: New. - * objc.dg/class-2.m: New. - * objc.dg/const-str-1.m: New. - * objc.dg/const-str-2.m: New. - * objc.dg/id-1.m: New. - * objc.dg/method-1.m: New. - * objc.dg/super-class-1.m: New. - * lib/objc-dg.exp: New file. - -2001-06-16 John David Anglin <dave@hiauly1.hia.nrc.ca> - - * g++.dg/mangle1.C: Modify regexp to test for `[: \t\n]' at end - of label name. - -2001-06-14 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.abi/vbase8-9.C: New test. - -2001-06-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> - - * lib/objc.exp (objc_target_compile): Add ${rootme} to ld_library_path - variable. - -2001-06-12 Richard Henderson <rth@redhat.com> - - * g++.old-deja/g++.other/crash27.C: Don't XFAIL. - -2001-06-12 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.abi/vbase5.C: New test. - * g++.old-deja/g++.abi/vbase6.C: New test. - * g++.old-deja/g++.abi/vbase7.C: New test. - -2001-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/compile/20010610-1.c: New test. - -2001-06-12 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.abi/vbase4.C: New test. - -2001-06-11 Stephane Carrez <Stephane.Carrez@worldnet.fr> - - * gcc.c-torture/execute/920501-8.x: New file, sprintf() does not - support %f for HC11/HC12 targets. - * gcc.c-torture/execute/930513-1.x: New file, likewise. - * gcc.c-torture/execute/980709-1.x: New file, pow() is not available - on HC11/HC12 targets. - * gcc.c-torture/execute/990826-0.x: New file, likewise for floor(). - -2001-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> - - * gcc.dg/wchar_t-1.c: New file. - * gcc.dg/wint_t-1.c: Likewise. - -2001-06-11 Bernd Schmidt <bernds@redhat.com> - - * g++.old-deja/g++.other/stepanov_v1p2.C: Remove. - -2001-06-11 Richard Henderson <rth@redhat.com> - - * g++.old-deja/g++.law/code-gen5.C: Don't send raw pointers to assert. - -2001-06-11 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/compile/20010611-1.c: New test. - -2001-06-11 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c99-tag-1.c: Add more tests. - -2001-06-10 Alexandre Oliva <aoliva@redhat.com> - - * g++.old-deja/g++.abi/ptrmem.C: Take into account different - representation on MN10300 and ARM/Thumb. - -2001-06-10 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.f-torture/execute/20010610.f: New. - -2001-06-09 David Billinghurst <David.Billinghurst@riotinto.com> - - * g++.dg/mangle1.C: Change regex to allow USER_LABEL_PREFIX == "_" - names. - -2001-06-09 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/execute/ashrdi-1.c: New. - * gcc.c-torture/execute/ashldi-1.c: New. - * gcc.c-torture/execute/lshrdi-1.c: New. - -2001-06-09 Ovidiu Predescu <ovidiu@cup.hp.com> - - * objc/execute/load-3.m: Added. Check sending +load to categories, - in addition to classes. - -2001-06-08 Stan Shebs <shebs@apple.com> - - * objc/execute/load-2.m: New test. From Nicola Pero - <n.pero@mi.flashnet.it>. - -2001-06-08 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20010605-2.c: New test. - -2001-06-08 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.abi/vbase2.C: New test. - * g++.old-deja/g++.abi/vbase3.C: New test. - -2001-06-08 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/friend49.C: New test. - -2001-06-07 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.ext/anon3.C: New test. - -2001-06-05 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/conv7.C: New test. - -2001-06-05 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/compile/20010605-2.c: New test. - -2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca> - - * gcc.c-torture/execute/20010604-1.c: New test. - -2001-06-04 Loren J. Rittle <ljrittle@acm.org> - - * gcc.c-torture/execute/ieee/rbug.x: XFAIL FreeBSD 5.x. - -2001-06-04 Jeffrey Oldham <oldham@codesourcery.com> - - * lib/g++.exp (g++_include_flags): Change `args' to gccpath's value. - (g++_link_flags): Likewise. - (g++_init): Pass gccpath's value to two previous functions. - -2001-06-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.misc-tests/linkage.exp: Use wildcards when matching N32. - Ensure logfile entry matches exec command line. - -2001-05-31 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/execute/memcheck/blkarg.x: Disable the test. - * g++.dg/mangle1.C: Tweek expected mangling for 64-bit hosts. - -2001-05-30 David.Billinghurst <David.Billinghurst@riotinto.com> - - * gcc.misc-tests/linkage.exp: Pass appropriate flags to native - compiler for irix6.2 - -2001-05-30 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/optimize3.C: New file. - -2001-05-29 Jeffrey Oldham <oldham@codesourcery.com> - - * gcc.c-torture/compile/20010518-2.x: New file to compile, not - assemble. - -2001-05-26 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/optimize2.C: New file. - -2001-05-25 Diego Novillo <dnovillo@redhat.com> - - * gcc.c-torture/compile/20010518-2.c: New file. - * gcc.c-torture/execute/20010518-1.c: New file. - * gcc.c-torture/execute/20010518-2.c: New file. - -2001-05-25 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c90-arraydecl-1.c, gcc.dg/c99-arraydecl-1.c: New tests. - -2001-05-24 Mark Mitchell <mark@codesourcery.com> - - G++ no longer defines builtins that do not begin with __builtin. - * g++.old-deja/g++.abi/bitfields.C: Update accordingly. - * g++.old-deja/g++.brendand/misc13.C: Likewise. - * g++.old-deja/g++.law/builtin1.C: Likewise. - * g++.old-deja/g++.law/cvt2.C: Likewise. - * g++.old-deja/g++.mike/net5.C: Likewise. - * g++.old-deja/g++.other/builtins1.C: Likewise. - * g++.old-deja/g++.other/builtins2.C: Likewise. - * g++.old-deja/g++.other/builtins3.C: Likewise. - * g++.old-deja/g++.other/builtins4.C: Likewise. - * g++.old-deja/g++.other/inline8.C: Likewise. - * g++.old-deja/g++.robertl/eb39.C: Likewise. - -2001-05-24 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/using1.C: Adjust. - * g++.old-deja/g++.pt/using2.C: New test. - -2001-05-23 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/charconst.c: New tests. - * gcc.dg/cpp/escape.c: New tests. - * gcc.dg/cpp/escape-1.c: New tests. - * gcc.dg/cpp/escape-2.c: New tests. - * gcc.dg/cpp/ucs.c: New tests. - -2001-05-23 David.Billinghurst <David.Billinghurst@riotinto.com> - - * gcc.misc-tests/linkage.exp: Pass appropriate flags to - native compiler for irix6.5. - -Wed May 23 2001 Jeffrey D. Oldham <oldham@codesourcery.com> - - * lib/g++.exp (g++_include_flags): Use args to compute - get_multilibs. - (g++_link_flags): Likewise. - (g++_init): Pass TOOL_OPTIONS as arguments to two above functions. - -2001-05-22 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c90-hexfloat-1.c: Add more tests. - -2001-05-21 Geoff Keating <geoffk@redhat.com> - - * gcc.c-torture/compile/920520-1.x: Merge previous contents into - this file. - -2001-05-21 Stephane Carrez <Stephane.Carrez@worldnet.fr> - - * gcc.c-torture/unsorted/msp.c (A_SIZE): Define according to - STACK_SIZE; - * gcc.c-torture/compile/991214-2.c (HISTO_SIZE): Define according - to STACK_SIZE; Use it to define size of add_histo array. - * gcc.c-torture/compile/920723-1.c (GITT_SIZE): Define according - to STACK_SIZE. - (f): Use GITT_SIZE to define size of gitt local table. - * gcc.c-torture/compile/930621-1.c (BYTEMEM_SIZE): Define according - to STACK_SIZE; Use it to define size of bytemem array. - -2001-05-21 Stephane Carrez <Stephane.Carrez@worldnet.fr> - - * gcc.c-torture/compile/20000804-1.x: New file, this test fails - on 68HC11/HC12 due to the asm instruction. - * gcc.c-torture/compile/20001205-1.x: New file, ditto. - * gcc.c-torture/compile/920520-1.x: Likewise. - * gcc.c-torture/compile/20001226-1.x: New file, this test fails - on 68HC11/HC12 because the function is larger than 64K. - * gcc.c-torture/compile/961203-1.x: New file, this test fails - on 68HC11/HC12 because the structure is too large. - -2001-05-20 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/execute/20010520-1.c: New. - -2001-05-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * g++.old-deja/g++.warn/compare1.C: New test. - * gcc.dg/compare4.c: New test. - -2001-05-20 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/optimize1.C: New test. - -2001-05-20 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - * g++.old-deja/g++.pt/spec41.C: New test. - -2001-05-19 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/compile/20010114-1.x: Remove. - -2001-05-18 Stan Shebs <shebs@apple.com> - - * gcc.c-torture/compile/20010518-1.c: New test. - -2001-05-18 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/inherit2.C: Remove XFAIL. - * g++.old-deja/g++.pt/crash67.C: New test. - -2001-05-17 Jeffrey D. Oldham <oldham@codesourcery.com> - - * g++.old-deja/g++.other/debug9.C: New test. - -2001-05-16 Zack Weinberg <zackw@stanford.edu> - - * gcc.dg/complete-port.c: New (revised version of libgcc1-test.c) - -2001-05-16 Jan Hubicka <jh@suse.cz> - - * gcc.c-torture/compile/20010516-1.c: New test. - -2001-05-16 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/crash41.C: New test. - -2001-05-16 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/crash66.C: New test. - -2001-05-15 Benjamin Kosnik <bkoz@redhat.com> - - * g++.old-deja/g++.robertl/eb27.C: Convert. - -2001-05-15 Nick Clifton <nickc@cambridge.redhat.com> - - * g++.dg/friend-warn.C: New test. Do not warn about friend - declaration being redundant. - -2001-05-15 Mark Mitchell (admin) <mitchell@nunki.dbai.tuwien.ac.at> - - * gcc.dg/ultrasp2.c: Don't run it with -m64 on sparc-*-*. - -2001-05-14 Mark Mitchell <mark@codesourcery.com> - - * lib/objc.exp: Add -lposix4 on Solaris 2.6 and Solaris 2.7. - -2001-05-13 Benjamin Kosnik <bkoz@redhat.com> - - * lib/g++.exp: Use testsuite_flags. - -2001-05-13 Mark Mitchell <mark@codesourcery.com> - - * gcc.c-torture/execute/ieee/rbug.x: XFAIL FreeBSD 4.x. - -2001-05-11 John David Anglin <dave@hiauly1.hia.nrc.ca> - - * gcc.c-torture/execute/ieee/ieee.exp: Don't run ieee tests on VAX. - -2001-05-11 Mark Mitchell <mark@codesourcery.com> - - * lib/objc.exp: Add -lposix4 on Solaris 2.8. - -2001-05-10 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/compile/20010313-1.c: New test. - -2001-05-09 Zack Weinberg <zackw@stanford.edu> - - * gcc.dg/cpp/direct2.c: New test. - * gccq.dg/cpp/direct2s.c: New test. - - * gcc.c-torture/execute/920730-1t.c: #undef __GNUC__ at head. - -2001-05-07 Mark Mitchell <mark@codesourcery.com> - - * g++.old-deja/g++.other/op2.C: Don't use `glob' as a variable. - * g++.old-deja/g++.other/op3.C: Likewise. - -2001-05-06 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/syshdr.h: New file. - * gcc.dg/cpp/sysmac1.c: Update. - * gcc.dg/cpp/sysmac2.c: Update. - -2001-05-05 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/sysmac1.c,sysmac2.c: Return to original file. - -2001-05-04 David Edelsohn <edelsohn@gnu.org> - - * gcc.c-torture/execute/20001227-1.c: Remove duplicate of - gcc.c-torture/execute/20000412-3.c with no ChangeLog entry. - -2001-05-04 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.c-torture/execute/longlong.c: Update for 16 bit int issues. - -2001-05-03 Geoffrey Keating <geoffk@redhat.com> - - * lib/g++.exp (g++_include_flags): Don't use any special flags - if TESTING_IN_BUILD_TREE is not defined. - (g++_init): Use a plain 'c++' as the compiler if - TESTING_IN_BUILD_TREEE is not defined. - -2001-05-02 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.eh/catch13.C: New test. - * g++.old-deja/g++.eh/catch14.C: New test. - -2001-05-02 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/cpp/tr-define.c: New test. - -2001-05-01 Loren J. Rittle <ljrittle@acm.org> - - * g++.old-deja/g++.abi/cxa_vec.C: Get malloc() from - <stdlib.h>, not <malloc.h>. - -2001-05-01 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.ns/template17.C: New test. - -2001-05-01 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/ref4.C: New test. - -2001-04-30 Richard Henderson <rth@redhat.com> - - * gcc.dg/20000724-1.c: Revert last change. - -2001-04-30 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.f-torture/execute/20010430.f: New test. - -2001-04-30 Mark Mitchell <mark@codesourcery.com> - - * gcc.dg/20000724-1.c: Add a clobber of `esp'. - -2001-04-29 Joseph S. Myers <jsm28@cam.ac.uk> - - * g++.old-deja/g++.other/crash14.C: Remove -fnew-abi. - -2001-04-27 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.eh/crash6.C: New test. - -2001-04-27 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/warn7.C: New test. - -2001-04-27 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/defarg9.C: New test. - -2001-04-26 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.f-torture/compile/20010426.f: New test. - * g77.f-torture/execute/20010426.f: New test. - -2001-04-26 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.f-torture/compile/20000629-1.x: Remove - error - has been fixed. - -2001-04-26 Jeffrey A Law (law@cygnus.com) - - * g++.dg/special/initp1.C: Moved here from g++.old-deja/g++.ext. - Tweak slightly to work with g++.dg framework. - * g++.dg/special/ecos.exp: Run initp1.C test. - * g++.old-deja/g++.ext/initp1.C: Moved to g++.dg/special. - - * g++.old-deja/g++.ext/instantiate2.C: XFAIL for HPUX too since - its linker doesn't give line numbers either. - * g++.old-deja/g++.ext/instantiate3.C: Similarly. - -2001-04-26 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/lex1.C: New test. - -2001-04-26 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/noncompile/20010425-1.c: New test. - -2001-04-26 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/mangle2.C: New test. - -2001-04-25 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/format/plus-1.c: New test. - -2001-04-25 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/20010423-1.c: New test. - -2001-04-25 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20010422-1.c: New test. - -2001-04-25 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.ns/type2.C: New test. - -2001-04-24 Zack Weinberg <zackw@stanford.edu> - - * g++.old-deja/g++.other/perf1.C: New test. - -2001-04-24 Nathan Sidwell <nathan@codesourcery.com> - - * gcc.dg/c99-func-2.c: Remove xfail. - * gcc.dg/c99-func-3.c: Remove xfail. - * gcc.dg/c99-func-4.c: Remove xfail. - -2001-04-23 Zack Weinberg <zackw@stanford.edu> - - * gcc.c-torture/execute/20010124-1.c: No longer expected to fail. - -2001-04-23 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/compile/20010423-1.c: New test. - -2001-04-20 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/typename28.C: New test. - -2001-04-20 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.abi/empty2.C: New test. - * g++.old-deja/g++.abi/empty3.C: New test. - -2001-04-20 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/comdat2.C: New test. - * g++.old-deja/g++.other/comdat2-aux.cc: Auxiliary source for it. - -2001-04-20 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/overload14.C: New test. - -2001-04-20 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/lookup23.C: New test. - -2001-04-20 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20010403-1.c: New test. - -2001-04-19 David Billinghurst <David.Billinghurst@riotinto.com> - Mark Mitchell <mark@codesourcery.com> - - * lib/old-dejagnu.exp: Don't delete output of executable. - Add .exe suffix to executables. - -2001-04-18 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.f-torture/execute/short.x; Remove - Error has been fixed. - -2001-04-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.dg/wtr-conversion-1.c: Don't test for width changes. - -2001-04-12 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.abi/primary3.C (main): Correct expected layout. - * g++.old-deja/g++.abi/crash1.C: New test. - -2001-04-12 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/crash40.C: New test. - -2001-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/20010122-1.c: Fix declaration of alloca. - -2001-04-11 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/warn6.C: New test. - -22001-04-11 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> - - * g++.old-deja/g++.robertl/eb42.C: Same. - -001-04-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.dg/wtr-conversion-1.c: New testcase. - -2001-04-10 Richard Henderson <rth@redhat.com> - - * g++.old-deja/g++.other/array5.C: New. - -2001-04-08 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> - - * gcc.c-torture/execute/20010408-1.c: New test. - -2001-04-06 Benjamin Kosnik <bkoz@redhat.com> - - * g++.old-deja/g++.benjamin/15071.C (main): Update to conformant - headers and constructs. - * g++.old-deja/g++.robertl/eb79.C: Same. - * g++.old-deja/g++.robertl/eb77.C (main): Same. - * g++.old-deja/g++.robertl/eb73.C: Same. - * g++.old-deja/g++.robertl/eb66.C (main): Same. - * g++.old-deja/g++.robertl/eb55.C (t): Same. - * g++.old-deja/g++.robertl/eb54.C (main): Same. - * g++.old-deja/g++.robertl/eb46.C (main): Same. - * g++.old-deja/g++.robertl/eb44.C: Same. - * g++.old-deja/g++.robertl/eb41.C (main): Same. - * g++.old-deja/g++.robertl/eb4.C (main): Same. - * g++.old-deja/g++.robertl/eb39.C: Same. - * g++.old-deja/g++.robertl/eb33.C (main): Same. - * g++.old-deja/g++.robertl/eb31.C (main): Same. - * g++.old-deja/g++.robertl/eb30.C: Same. - * g++.old-deja/g++.robertl/eb3.C: Same. - * g++.old-deja/g++.robertl/eb24.C (T>): Same. - * g++.old-deja/g++.robertl/eb21.C: Same. - * g++.old-deja/g++.robertl/eb15.C: Same. - * g++.old-deja/g++.robertl/eb118.C: Same. - * g++.old-deja/g++.robertl/eb115.C (main): Same. - * g++.old-deja/g++.robertl/eb113.C (streambuf): Same. - * g++.old-deja/g++.robertl/eb109.C: Same. - * g++.old-deja/g++.other/sibcall1.C (main): Same. - * g++.old-deja/g++.mike/rtti1.C: Same. - * g++.old-deja/g++.mike/p658.C: Same. - * g++.old-deja/g++.mike/net46.C: Same. - * g++.old-deja/g++.mike/net34.C: Same. - * g++.old-deja/g++.mike/memoize1.C: Same. - * g++.old-deja/g++.mike/eh2.C: Same. - * g++.old-deja/g++.law/weak.C: Same. - * g++.old-deja/g++.law/visibility7.C: Same. - * g++.old-deja/g++.law/visibility25.C: Same. - * g++.old-deja/g++.law/visibility22.C: Same. - * g++.old-deja/g++.law/visibility2.C: Same. - * g++.old-deja/g++.law/visibility17.C: Same. - * g++.old-deja/g++.law/visibility13.C: Same. - * g++.old-deja/g++.law/visibility10.C: Same. - * g++.old-deja/g++.law/visibility1.C: Same. - * g++.old-deja/g++.law/virtual3.C (eval): Same. - * g++.old-deja/g++.law/vbase1.C: Same. - * g++.old-deja/g++.law/operators32.C: Same. - * g++.old-deja/g++.law/nest3.C: Same. - * g++.old-deja/g++.law/missed-error2.C (foo): Same. - * g++.old-deja/g++.law/except5.C (main): Same. - * g++.old-deja/g++.law/cvt7.C (run): Same. - * g++.old-deja/g++.law/cvt2.C: Same. - * g++.old-deja/g++.law/cvt16.C: Same. - * g++.old-deja/g++.law/ctors6.C (bar): Same. - * g++.old-deja/g++.law/ctors17.C (main): Same. - * g++.old-deja/g++.law/ctors13.C: Same. - * g++.old-deja/g++.law/ctors12.C (main): Same. - * g++.old-deja/g++.law/ctors10.C: Same. - * g++.old-deja/g++.law/code-gen5.C: Same. - * g++.old-deja/g++.law/bad-error7.C: Same. - * g++.old-deja/g++.law/arm9.C: Same. - * g++.old-deja/g++.law/arm12.C: Same. - * g++.old-deja/g++.law/arg8.C: Same. - * g++.old-deja/g++.law/arg1.C: Same. - * g++.old-deja/g++.jason/typeid1.C (struct foo): Same. - * g++.old-deja/g++.jason/template31.C: Same. - * g++.old-deja/g++.jason/template24.C (main): Same. - * g++.old-deja/g++.jason/2371.C: Same. - * g++.old-deja/g++.eh/new2.C: Same. - * g++.old-deja/g++.eh/new1.C: Same. - * g++.old-deja/g++.brendan/ptolemy2.C: Same. - * g++.old-deja/g++.brendan/nest21.C (main): Same. - * g++.old-deja/g++.brendan/err-msg3.C: Same. - * g++.old-deja/g++.brendan/crash62.C: Same. - * g++.old-deja/g++.brendan/crash52.C: Same. - * g++.old-deja/g++.brendan/crash49.C (main): Same. - * g++.old-deja/g++.brendan/crash38.C: Same. - * g++.old-deja/g++.brendan/crash15.C (main): Same. - * g++.old-deja/g++.brendan/copy9.C: Same. - -2001-04-06 J"orn Rennecke <amylaar@redhat.com> - - * gcc.c-torture/execute/20001203-2.c (memset): - Count argument is of type __SIZE_TYPE__. - -2001-04-04 Diego Novillo <dnovillo@redhat.com> - - * gcc.c-torture/compile/20010404-1.c: New test. - -2001-04-04 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/compile/20010326-1.c: New test. - -2001-04-03 Alexandre Oliva <aoliva@redhat.com> - - * g++.old-deja/g++.ext/instantiate1.C: Adjust to accommodate - peculiarities of the SH. - * g++.old-deja/g++.ext/instantiate2.C: Likewise. - -2001-04-02 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> - - * gcc.c-torture/execute/ieee/fp-cmp-1.c: Renamed nan to dnan. - * gcc.c-torture/execute/ieee/fp-cmp-3.c: Likewise. - * gcc.c-torture/execute/ieee/fp-cmp-2.c: Renamed nan to fnan. - -2001-04-02 Jakub Jelinek <jakub@redhat.com> - - * g77.f-torture/compile/20010321-1.f: New test. - -2001-04-02 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/compile/20010329-1.c: New test. - -2001-04-02 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20010329-1.c: New test. - -2001-03-28 Loren J. Rittle <ljrittle@acm.org> - - * g++.old-deja/g++.other/eh4.C: Fix typo. - -2001-03-28 Loren J. Rittle <ljrittle@acm.org> - - * g++.dg/special/ecos.exp (conpr-1.C): Do not write in $srcdir. - -2001-03-28 Philip Blundell <philb@gnu.org> - - * gcc.c-torture/compile/20010328-1.c: New test. - -2001-03-27 Richard Henderson <rth@redhat.com> - - * g++.old-deja/g++.eh/crash3.C: Don't use -fsjlj-exceptions. - * g++.old-deja/g++.eh/vbase3.C: Likewise. - -2001-03-27 Alan Modra <alan@linuxcare.com.au> - - * gcc.c-torture/compile/20010327-1.c: New test. - -2001-03-26 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/friend12.C: New test. - * g++.old-deja/g++.other/friend9.C: Expect no errors. - * g++.old-deja/g++.robertl/eb56.C: Make typedef public. - -2001-03-25 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/execute/20010325-1.c: New test. - -2001-03-23 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/mangle3.C: New test. - -2001-03-22 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/anon8.C: New test. - -2001-03-20 Philip Blundell <philb@gnu.org> - - * gcc.c-torture/compile/20010320-1.c: New test. - -2001-03-17 Richard Henderson <rth@redhat.com> - - * g++.old-deja/g++.other/eh4.C: Add expected error text. - -2001-03-15 Geoff Keating <geoff@redhat.com> - - * gcc.c-torture/execute/memcheck/memcheck.exp: Don't try to run these - tests on AIX. - -2001-03-15 Gabriel Dos Reis <gdr@codesourcery.com> - - * g++.old-deja/g++.other/eh4.C: New test. - -2001-03-14 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/mi1.c: Update. - -2001-03-14 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/regstack.C: New test. - -2001-03-12 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/ref4.C: New test. - -2001-03-11 Nicola Pero <n.pero@mi.flashnet.it> - - * objc/execute/va_method.m: Added. - * objc/execute/IMP.m: Added. - * objc/execute/_cmd.m: Added. - * objc/execute/accessing_ivars.m: Added. - * objc/execute/class-1.m: Added. - * objc/execute/class-10.m: Added. - * objc/execute/class-11.m: Added. - * objc/execute/class-12.m: Added. - * objc/execute/class-13.m: Added. +2001-01-15 David Bil * objc/execute/class-14.m: Added. * objc/execute/class-2.m: Added. * objc/execute/class-3.m: Added. @@ -15101,645 +11762,7 @@ Wed May 23 2001 Jeffrey D. Oldham <oldham@codesourcery.com> * g++.old-deja/g++.other/lookup22.C: New test. -2001-02-19 Zack Weinberg <zackw@stanford.edu> - - * g77.dg: New directory. - * g77.dg/20010216-1.f: New test case. - * g77.dg/dg.exp: New driver. - * lib/g77-dg.exp: New driver library. - -2001-02-18 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - * g++.old-deja/g++.other/inline19.c: Remove XFAIL. - -2001-02-16 Gabriel Dos Reis <gdr@codesourcery.com> - - * g++.old-deja/g++.other/decl9.C: New test. - -2001-02-16 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/init16.C: Update the test so that it does - not need <string> and also tests the initialization at runtime. - -2001-02-16 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.c-torture/execute/longlong.c: New test. - -2001-02-14 J"orn Rennecke <amylaar@redhat.com> - - * g++.old-deja/g++.brendan/new2.C (main): Use sizeof. - -2001-02-14 J"orn Rennecke <amylaar@redhat.com> - - * gcc.c-torture/execute/920302-1.c (execute): - Change argument type to short. - -2001-02-14 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/deduct6.C: New test. - -2001-02-14 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/deduct5.C: New test. - -2001-02-14 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20010209-1.c: New test. - -2001-02-14 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/sysmac1.c, sysmac2.c: New tests. - -2001-02-12 Geoffrey Keating <geoffk@redhat.com> - - * g++.dg/vtgc1.C: Update for new ABI. - - * consistency.vlad: New directory, 1665 files. - -2001-02-12 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c99-impl-int-1.c: Use stricter error string for implicit - return type. - * gcc.dg/cpp/digraphs.c: Declare puts. - -2001-02-12 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/warn5.C: New test. - -2001-02-12 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/spec40.C: New test. - -2001-02-12 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.robertl/eb63.C: Remove new initializer list - case. - * g++.old-deja/g++.ext/arrnew.C: Deprecate. - -2001-02-12 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/compile/20010209-1.c: New test. - -2001-02-11 Jeffrey Oldham <oldham@codesourcery.com> - - * g++.old-deja/g++.other/crash26.C: XFAIL if parser produces - excess errors message but not if it crashes. - * g++.old-deja/g++.other/crash27.C: Likewise. - * g++.old-deja/g++.other/crash28.C: Likewise. - * g++.old-deja/g++.other/crash30.C: Likewise. - * g++.old-deja/g++.other/crash32.C: Likewise. - * g++.old-deja/g++.other/crash35.C: Likewise. - * g++.old-deja/g++.pt/inherit2.C: Likewise. - -2001-02-08 Joseph S. Myers <jsm28@cam.ac.uk> - - * config/default.exp, gcc.dg/cpp/cpp.exp, gcc.dg/dg.exp, - gcc.dg/noncompile/noncompile.exp, gcc.dg/format/format.exp, - g++.dg/dg.exp, g++.old-deja/old-deja.exp, - g77.f-torture/execute/execute.exp, - g77.f-torture/noncompile/noncompile.exp, - gcc.c-torture/execute/execute.exp, - gcc.c-torture/execute/memcheck/memcheck.exp, - gcc.misc-tests/acker1.exp, gcc.misc-tests/dg-test.exp, - gcc.misc-tests/dhry.exp, gcc.misc-tests/gcov.exp, - gcc.misc-tests/linkage.exp, gcc.misc-tests/matrix1.exp, - gcc.misc-tests/mg.exp, gcc.misc-tests/msgs.exp, - gcc.misc-tests/sieve.exp, gcc.misc-tests/sort2.exp, - lib/g++-dg.exp, lib/g++.exp, lib/g77.exp, lib/gcc-dg.exp, - lib/gcc.exp, lib/mike-g++.exp, lib/mike-gcc.exp, - lib/old-dejagnu.exp, lib/scanasm.exp, objc/execute/execute.exp: - Remove bug reporting instructions with ancient email addresses. - -2001-02-07 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/20010202-1.c: New test. - * gcc.dg/991209-1.c: Compile on whole ia32 family, not just i386. - -2001-02-07 Zack Weinberg <zack@wolery.stanford.edu> - - * g++.dg/stdbool-if.C: New test. - -2001-02-07 Ovidiu Predescu <ovidiu@cup.hp.com> - - * objc/execute/fdecl.m: Added main(). - -2001-02-07 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20010206-1.c: New test. - -2001-02-06 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/avoidpaste1.c: Update. - -2001-02-05 Ovidiu Predescu <ovidiu@cup.hp.com> - - * objc/execute/bycopy-1.m, bycopy-2.m: Added new tests from Nicola - Pero <nicola@brainstorm.co.uk>. - * objc/execute/fdecl.m: Declare foo as pointer to AClass. - -2001-02-06 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/spec39.C: New test. - -2001-02-05 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/compile/20010202-1.c: New test. - -2001-02-05 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.abi/primary2.C: New test. - * g++.old-deja/g++.abi/primary3.C: New test. - * g++.old-deja/g++.abi/primary4.C: New test. - * g++.old-deja/g++.abi/primary5.C: New test. - * g++.old-deja/g++.abi/vtable3.h: New test. - * g++.old-deja/g++.abi/vtable3a.C: New test. - * g++.old-deja/g++.abi/vtable3b.C: New test. - * g++.old-deja/g++.abi/vtable3c.C: New test. - * g++.old-deja/g++.abi/vtable3d.C: New test. - * g++.old-deja/g++.abi/vtable3e.C: New test. - * g++.old-deja/g++.abi/vtable3f.C: New test. - * g++.old-deja/g++.abi/vtable3g.C: New test. - * g++.old-deja/g++.abi/vtable3h.C: New test. - * g++.old-deja/g++.abi/vtable3i.C: New test. - * g++.old-deja/g++.abi/vtable3j.C: New test. - * g++.old-deja/g++.oliva/thunk1.C: Remove XFAIL. - -2001-02-03 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/anon6.C: New test. - * g++.old-deja/g++.other/anon7.C: New test. - -2001-02-01 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/avoidpaste2.c: New tests. - -2001-01-31 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/gnu99-init-1.c: Add test for [0 ... 0] range. - -2001-01-31 Jeffrey Oldham <oldham@codesourcery.com> - - * gcc.dg/c99-float-1.c: Back out "XFAIL FLT_EVAL_METHOD and - DECIMAL_DIG cases for Irix." - -2001-01-31 J"orn Rennecke <amylaar@redhat.com> - - * gcc.c-torture/execute/920302-1.c: Cast 0 to pointer. - -2001-01-31 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c99-tag-1.c: New test. - -2001-01-31 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/tr-warn1.c: Add tests. - -2001-01-31 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/avoidpaste1.c: Update. - * gcc.dg/cpp/paste4.c: Update. - -2001-01-30 Jeffrey Oldham <oldham@codesourcery.com> - - * gcc.dg/c99-float-1.c: XFAIL FLT_EVAL_METHOD and DECIMAL_DIG - cases for Irix. - -2001-01-30 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> - - * g++.old-deja/g++.other/inline19.C: New test. - -2001-01-30 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/Wlarger-than.c: New test. - -2001-01-29 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/avoidpaste1.c: Fix typos. - -2001-01-29 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20010129-1.c: New test. - * gcc.c-torture/execute/20010129-1.x: Add -mcpu=i686 on ia32. - -2001-01-28 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/avoidpaste1.c: Test case. - -2001-01-28 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/inline18.C: New test. - -2001-01-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/stdio-opt-2.c: Also test __builtin_puts - and __builtin_putchar. - -2001-01-27 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/gnu99-init-1.c: Add 3 more designated range initializer - tests. - -2001-01-25 Jeffrey Oldham <oldham@codesourcery.com> - - * gcc.c-torture/execute/ieee/20000320-1.c (main): For MIPS, change - floating point number rounding mode to round to the nearest - representable mode. - -2001-01-25 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/mangle2.C: New test. - -2001-01-24 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/compile/20010124-1.c: New test. - -2001-01-24 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/spec38.C: New test. - -2001-01-23 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - * g++.old-deja/g++.pt/spec33.C: Change from "Build don't link" to - "Build don't run". - -2001-01-23 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> - - * gcc.c-torture/execute/20010123-1.c: New test. - -2001-01-23 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/spec37.C: New test. - -2001-01-23 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/overload14.C: New test. - -2001-01-22 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> - - * gcc.c-torture/execute/20010122-1.c: New test, exercise - __builtin_return_address. - -2001-01-22 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.martin/sts_partial.C: Remove XFAIL. - * g++.old-deja/g++.pt/spec35.C: New test. - * g++.old-deja/g++.pt/spec36.C: New test. - -2001-01-20 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/compile/20010118-1.c: New test. - -2001-01-20 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/macro3.c,macro4.c,strp1.c: Update. - -2001-01-19 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20010119-1.c: New test. - -2001-01-19 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/vbase5.C: New test. - -2001-01-19 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20010118-1.c: New test. - -2001-01-19 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/deduct3.C: New test. - -2001-01-19 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/spec34.C: New test. - -2001-01-19 "Billinghurst, David (CRTS)" <David.Billinghurst@riotinto.com> - - * g77.f-torture/compile/20000601-2.f: New test. - -2001-01-18 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/init17.C: New test. - -2001-01-18 Alexandre Oliva <aoliva@redhat.com> - - * gcc.dg/cpp/if-2.c: Adjust for signed wchar_t. - -2001-01-18 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/unify8.C: New test. - -2001-01-18 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.abi/vbase1.C: New test. - -2001-01-18 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/crash65.C: New test. - -2001-01-18 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/assembl2.S: New test case. - -2001-01-17 Jeffrey Oldham <oldham@codesourcery.com> - - * gcc.dg/special/ecos.exp (wkali-2.c): Xfail if only weak aliases - are supported. - -2001-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * g++.old-deja/g++.other/builtins1.C: New test. - * g++.old-deja/g++.other/builtins2.C: Likewise. - * g++.old-deja/g++.other/builtins3.C: Likewise. - * g++.old-deja/g++.other/builtins4.C: Likewise. - -2001-01-17 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/compile/20010117-1.c: New test. - * gcc.c-torture/compile/20010117-2.c: New test. - -2001-01-15 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.f-torture/execute/20010116.[fx]: New test, - XFAIL on i?86-*-*. - * g77.f-torture/compile/20010115.f: Indicate it's - a test for PR fortran/1636. - -2001-01-15 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c90-float-1.c, gcc.dg/c99-float-1.c: New tests. - -2001-01-15 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.f-torture/compile/20010115.f: New test. - -2001-01-15 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/nontype5.C: New test. - -2001-01-15 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/if-2.c: Comment out occasionally bogus test; we - have an equivalent working one below it. - -2001-01-14 Jeffrey Oldham <oldham@codesourcery.com> - - * g++.old-deja/g++.ext/instantiate2.C: Add explanatory comment. - * g++.old-deja/g++.ext/instantiate3.C: Likewise. - -2001-01-14 Jeffrey Oldham <oldham@codesourcery.com> - - * g++.dg/special/ecos.exp (conpr-1.C): XFAIL if compile emits - message containing "init_priority". - (conpr-2.C): Likewise. - (conpr-3.C): Likewise. - * g++.old-deja/g++.ext/initp1.C: XFAIL for Irix. - -2001-01-14 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> - - * gcc.c-torture/execute/20010114-2.c: New test. - -2001-01-14 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/compile/20010114-1.c: New test. - * gcc.c-torture/compile/20010114-1.x: Xfail. - * gcc.c-torture/compile/20010114-2.c: New test. - * gcc.c-torture/execute/20010114-1.c: New test. - * gcc.dg/trunc-1.c: New test. - * gcc.dg/uninit-B.c: New test. - -2001-01-13 Nick Clifton <nickc@redhat.com> - - * gcc.c-torture/execute/bf64-1.x: Expect to fail on M*Core - target. - -2001-01-13 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/compile/20010113-1.c: New test. - -2001-01-13 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/compile/20001212-1.c: New test. - -2001-01-13 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/widestr1.c: Update. - * gcc.dg/cpp/prag-imp.c: Remove. - -2001-01-12 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20000801-3.x: Remove. - * gcc.dg/c90-init-1.c: New test. - * gcc.dg/c99-init-1.c: New test. - * gcc.dg/c99-init-2.c: New test. - * gcc.dg/gnu99-init-1.c: New test. - -2001-01-12 Richard Earnshaw <rearnsha@arm.com> - - * lib/f-torture.exp (f_torture_compile): Prune the warnings before - testing that no relevant ones were found. - -2001-01-12 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/cast2.C: New test. - -2001-01-12 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/friend47.C: New test. - -2001-01-11 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/instantiate13.C: New test. - -2001-01-11 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/defarg7.C: New test. - * g++.old-deja/g++.other/defarg8.C: New test. - -2001-01-11 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/crash64.C: New test. - -2001-01-11 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/crash63.C: New test. - -2001-01-11 Neil Booth <neil@daikokuya.demon.co.uk> - - * gcc.dg/cpp/if-2.c: Add wide char test without sign extension. - -2001-01-10 Alan Lehotsky <lehotsky@tiac.net> - - * gcc.dg/20000926-1.c: Parameterize for machines with 16-bit ints. - -2001-01-10 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/error3.C: New test. - -2001-01-10 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/crash39.C: New test. - -2001-01-10 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/vbase4.C: New test. - -2001-01-08 Jonathan Larmour <jlarmour@redhat.com> - - * gcc.dg/20000419-2.c: Move to "special" subdirectory. - * gcc.dg/special/20000419-2.c: New file. Identical to above. - * gcc.dg/special/special.exp: New test driver which will check - for alias support for the above test. - -2001-01-09 Alan Lehotsky <lehotsky@tiac.net> - - * gcc.c-torture/execute/921202-1.c: Use STACK_SIZE to avoid - problems on small machines. - * gcc.c-torture/execute/920730-1.c: Use values from <limits.h> to - parameterize. - -2001-01-09 Jeffrey Oldham <oldham@codesourcery.com> - - * g++.old-deja/g++.ext/instantiate2.C: ERROR line should fail for - mips. - * g++.old-deja/g++.ext/instantiate3.C: Likewise. - -2001-01-09 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old_deja/g++.pt/using8.C: New test. - -2001-01-09 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/format/attr-2.c, gcc.dg/format/attr-3.c: New tests. - -2000-01-08 Loren J. Rittle <ljrittle@acm.org> - - * gcc.c-torture/execute/ieee/mzero2.x: Adjust statement of - where a failure is expected. - * gcc.c-torture/execute/ieee/rbug.x: Likewise. - -2001-01-08 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old_deja/g++.pt/instantiate12.C: New test. - -2001-01-08 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.benjamin/15309-1.C: Expect diagnostic at - start of structs. - * g++.old-deja/g++.benjamin/15309-2.C: Likewise. - * g++.old-deja/g++.brendan/crash17.C: Likewise. - * g++.old-deja/g++.brendan/crash29.C: Likewise. - * g++.old-deja/g++.brendan/crash48.C: Likewise. - * g++.old-deja/g++.brendan/ns1.C: Likewise. - * g++.old-deja/g++.brendan/warnings1.C: Likewise. - * g++.old-deja/g++.bugs/900205_04.C: Likewise. - * g++.old-deja/g++.bugs/900514_03.C: Likewise. - * g++.old-deja/g++.eh/spec6.C: Likewise. - * g++.old-deja/g++.jason/crash3.C: Likewise. - * g++.old-deja/g++.law/ctors11.C: Likewise. - * g++.old-deja/g++.law/ctors17.C: Likewise. - * g++.old-deja/g++.law/ctors5.C: Likewise. - * g++.old-deja/g++.law/ctors9.C: Likewise. - * g++.old-deja/g++.mike/ambig1.C: Likewise. - * g++.old-deja/g++.mike/net22.C: Likewise. - * g++.old-deja/g++.mike/p3538a.C: Likewise. - * g++.old-deja/g++.mike/p3538b.C: Likewise. - * g++.old-deja/g++.mike/virt3.C: Likewise. - * g++.old-deja/g++.niklas/t128.C: Likewise. - * g++.old-deja/g++.other/anon4.C: Likewise. - * g++.old-deja/g++.other/using1.C: Likewise. - * g++.old-deja/g++.other/warn3.C: Likewise. - * g++.old-deja/g++.pt/t37.C: Likewise. - * g++.old-deja/g++.robertl/eb69.C: Likewise. - * g++.old-deja/g++.robertl/eb71.C: Likewise. - -2001-01-08 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/lookup16.C: Remove XFAIL. - -2001-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/stdio-opt-3.c: New test. - -2001-01-07 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/compile/20010107-1.c: New test. - -2001-01-07 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/execute/builtin-noret-1.c: New test. - -2001-01-07 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/format/format.h: New file. - * gcc.dg/format/array-1.c, gcc.dg/format/attr-1.c, - gcc.dg/format/branch-1.c, gcc.dg/format/c90-printf-1.c, - gcc.dg/format/c90-printf-2.c, gcc.dg/format/c90-printf-3.c, - gcc.dg/format/c90-scanf-1.c, gcc.dg/format/c90-scanf-2.c, - gcc.dg/format/c90-scanf-3.c, gcc.dg/format/c90-scanf-4.c, - gcc.dg/format/c90-strftime-1.c, gcc.dg/format/c90-strftime-2.c, - gcc.dg/format/c94-printf-1.c, gcc.dg/format/c94-scanf-1.c, - gcc.dg/format/c99-printf-1.c, gcc.dg/format/c99-printf-2.c, - gcc.dg/format/c99-printf-3.c, gcc.dg/format/c99-scanf-1.c, - gcc.dg/format/c99-scanf-2.c, gcc.dg/format/c99-scanf-3.c, - gcc.dg/format/c99-strftime-1.c, gcc.dg/format/c99-strftime-2.c, - gcc.dg/format/diag-1.c, gcc.dg/format/errmk-1.c, - gcc.dg/format/ext-1.c, gcc.dg/format/ext-2.c, - gcc.dg/format/ext-3.c, gcc.dg/format/ext-4.c, - gcc.dg/format/ext-5.c, gcc.dg/format/miss-1.c, - gcc.dg/format/miss-2.c, gcc.dg/format/no-exargs-1.c, - gcc.dg/format/no-y2k-1.c, gcc.dg/format/nonlit-1.c, - gcc.dg/format/nonlit-2.c, gcc.dg/format/nonlit-3.c, - gcc.dg/format/sec-1.c, gcc.dg/format/strfmon-1.c, - gcc.dg/format/va-1.c, gcc.dg/format/warnll-1.c, - gcc.dg/format/xopen-1.c, gcc.dg/format/z-1.c: Include "format.h" - instead of declaring standard types, macros and functions in each - test. - -2001-01-06 Alexandre Oliva <aoliva@redhat.com> - - * gcc.c-torture/execute/20010106-1.c: New test. - -2001-01-06 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/format/format.exp: New file. - * gcc.dg/c90-printf-1.c: Rename to gcc.dg/format/c90-printf-1.c. - * gcc.dg/c90-printf-2.c: Rename to gcc.dg/format/c90-printf-2.c. - * gcc.dg/c90-printf-3.c: Rename to gcc.dg/format/c90-printf-3.c. - * gcc.dg/c94-printf-1.c: Rename to gcc.dg/format/c94-printf-1.c. - * gcc.dg/c99-printf-1.c: Rename to gcc.dg/format/c99-printf-1.c. - * gcc.dg/c99-printf-2.c: Rename to gcc.dg/format/c99-printf-2.c. - * gcc.dg/c99-printf-3.c: Rename to gcc.dg/format/c99-printf-3.c. - * gcc.dg/c90-scanf-1.c: Rename to gcc.dg/format/c90-scanf-1.c. - * gcc.dg/c90-scanf-2.c: Rename to gcc.dg/format/c90-scanf-2.c. - * gcc.dg/c90-scanf-3.c: Rename to gcc.dg/format/c90-scanf-3.c. - * gcc.dg/c90-scanf-4.c: Rename to gcc.dg/format/c90-scanf-4.c. - * gcc.dg/c94-scanf-1.c: Rename to gcc.dg/format/c94-scanf-1.c. - * gcc.dg/c99-scanf-1.c: Rename to gcc.dg/format/c99-scanf-1.c. - * gcc.dg/c99-scanf-2.c: Rename to gcc.dg/format/c99-scanf-2.c. - * gcc.dg/c99-scanf-3.c: Rename to gcc.dg/format/c99-scanf-3.c. - * gcc.dg/c90-strftime-1.c: Rename to gcc.dg/format/c90-strftime-1.c. - * gcc.dg/c90-strftime-2.c: Rename to gcc.dg/format/c90-strftime-2.c. - * gcc.dg/c99-strftime-1.c: Rename to gcc.dg/format/c99-strftime-1.c. - * gcc.dg/c99-strftime-2.c: Rename to gcc.dg/format/c99-strftime-2.c. - * gcc.dg/format-array-1.c: Rename to gcc.dg/format/array-1.c. - * gcc.dg/format-attr-1.c: Rename to gcc.dg/format/attr-1.c. - * gcc.dg/format-branch-1.c: Rename to gcc.dg/format/branch-1.c. - * gcc.dg/format-diag-1.c: Rename to gcc.dg/format/diag-1.c. - * gcc.dg/format-errmk-1.c: Rename to gcc.dg/format/errmk-1.c. - * gcc.dg/format-ext-1.c: Rename to gcc.dg/format/ext-1.c. - * gcc.dg/format-ext-2.c: Rename to gcc.dg/format/ext-2.c. - * gcc.dg/format-ext-3.c: Rename to gcc.dg/format/ext-3.c. - * gcc.dg/format-ext-4.c: Rename to gcc.dg/format/ext-4.c. - * gcc.dg/format-ext-5.c: Rename to gcc.dg/format/ext-5.c. - * gcc.dg/format-miss-1.c: Rename to gcc.dg/format/miss-1.c. - * gcc.dg/format-miss-2.c: Rename to gcc.dg/format/miss-2.c. - * gcc.dg/format-no-exargs-1.c: Rename to gcc.dg/format/no-exargs-1.c. - * gcc.dg/format-no-y2k-1.c: Rename to gcc.dg/format/no-y2k-1.c. - * gcc.dg/format-nonlit-1.c: Rename to gcc.dg/format/nonlit-1.c. - * gcc.dg/format-nonlit-2.c: Rename to gcc.dg/format/nonlit-2.c. - * gcc.dg/format-nonlit-3.c: Rename to gcc.dg/format/nonlit-3.c. - * gcc.dg/format-sec-1.c: Rename to gcc.dg/format/sec-1.c. +200 * gcc.dg/format-strfmon-1.c: Rename to gcc.dg/format/strfmon-1.c. * gcc.dg/format-va-1.c: Rename to gcc.dg/format/va-1.c. * gcc.dg/format-warnll-1.c: Rename to gcc.dg/format/warnll-1.c. @@ -16017,575 +12040,7 @@ Wed May 23 2001 Jeffrey D. Oldham <oldham@codesourcery.com> * gcc.dg/c90-printf-1.c: Add test for printf formats reading through a null pointer. -2000-12-06 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - * g++.old-deja/g++.oliva/partspec1.C: Remove XFAIL. - * g++.old-deja/g++.pt/partial4.C: New test. - -2000-12-06 J. David Anglin <dave@hiauly1.hia.nrc.ca> - - * gcc.c-torture/execute/ieee/hugeval.x: New. - -2000-12-06 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/backslash2.c: New tests. - -2000-12-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * testsuite/gcc.c-torture/execute/stdio-opt-1.c: Add more checks. - * testsuite/gcc.c-torture/execute/stdio-opt-2.c: New test. - -2000-12-05 Geoffrey Keating <geoffk@redhat.com> - - * gcc.c-torture/execute/20001203-2.c: New testcase. - -2000-12-05 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.h/spec6.C: Remove some of the XFAILS. - * g++.old-deja/g++.other/virtual10.C: New test. - -2000-12-05 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.mike/pmf5.C: Remove test. - -2000-12-05 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/compile/20001205-1.c: New. - -2000-12-04 Neil Booth <neilb@earthling.net> - - * g++.old-deja/g++.other/virtual9.C: New test. - * g++.old-deja/g++.pt/crash61.C: New test. - * gcc.c-torture/execute/loop-9.c: New test. - -2000-12-04 Neil Booth <neilb@earthling.net> - - * g++.old-deja/g++.other/instan1.C, instan2.C: Move to... - * g++.old-deja/g++.pt/instantiate1.C, instantiate2.C: ...here. - * gcc.dg/cpp/19960224-2.c, endif.c, if-6.c: Move into... - * gcc.dg/cpp/extratokens.c: ...here. - -2000-12-04 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/assert_trad1.c, assert_trad2.c, assert_trad3.c: - New tests. - -2000-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/string-opt-11.c: Add more strspn checks. - * gcc.c-torture/execute/string-opt-12.c: Add more strcspn checks. - -2000-12-03 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/execute/20001203-1.c: New test. - -2000-12-03 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/macro6.c: New test cases. - -2000-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/string-opt-9.c: New test. - * gcc.c-torture/execute/string-opt-10.c: Likewise. - * gcc.c-torture/execute/string-opt-11.c: Likewise. - * gcc.c-torture/execute/string-opt-12.c: Likewise. - - * gcc.c-torture/execute/string-opt-3.c: Add more strcmp checks. - * gcc.c-torture/execute/string-opt-8.c: Add more strncmp checks. - -2000-12-02 Geoffrey Keating <geoffk@redhat.com> - - * gcc.dg/cpp/if-6.c: New testcase. - - * gcc.dg/20001201-1.c: New testcase. - -2000-12-02 Neil Booth <neilb@earthling.net> - - * g++.old-deja/g++.other/externC4.C, - g++.old-deja/g++.other/friend10.C: New tests. - -2000-12-02 Neil Booth <neilb@earthling.net> - - * g++.old-deja/g++.other/instan2.C - * g++.old-deja/g++.other/instan3.C: New test. - -2000-12-02 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/c++98.c,c++98-pedantic.c,c89.c,c89-pedantic.c, - c94.c,c94-pedantic.c,c99.c,c99-pedantic.c,gnuc89.c,gnuc89-pedantic.c, - gnuc99.c,gnuc99-pedantic.c: New tests. - -2000-12-01 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/format-no-exargs-1.c, gcc.dg/format-no-y2k-1.c, - gcc.dg/format-nonlit-1.c, gcc.dg/format-nonlit-2.c: New tests. - -2000-12-01 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/20000720-1.S: Remove duplicate testcase. - * gcc.dg/cpp/poison.c: Update. - * gcc.dg/cpp/spacing1.c: New testcase for all spacing issues. - -2000-12-01 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.f-torture/execute/20001201.f: New test. - -2000-12-01 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c99-array-nonobj-1.c: No longer XFAIL. - -2000-12-01 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/string-opt-5.c: Add some memset tests. - -2000-12-01 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/cast6.C: New test. - -2000-11-30 Geoffrey Keating <geoffk@redhat.com> - - * gcc.c-torture/execute/20001130-2.c: New testcase. - -2000-11-30 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/execute/20001130-1.c: New test. - -2000-11-30 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/op3.C: New test. - -2000-11-30 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/op2.C: New test. - -2000-11-30 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/crash38.C: New test. - -2000-11-29 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.f-torture/execute/20001111.x: Test fixed - remove XFAIL. - -2000-11-29 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/string-opt-5.c: Add some strcmp and strncpy - tests. - * gcc.c-torture/execute/string-opt-6.c: New test. - - * gcc.dg/20001117-1.c: Add main. - -2000-11-28 Geoffrey Keating <geoffk@redhat.com> - - * gcc.dg/noncompile/940510-1.c: Update to test c89 functionality. - Move from here ... - * gcc.dg/940510-1.c: ... to here. - - * gcc.dg/20000926-1.c: GNU C now allows initializations of - zero-size arrays in toplevel structures. - -2000-11-28 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/loop-8.c: New test. - -2000-11-28 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/base1.C: New test. - -2000-11-28 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/parse2.C: New test. - -2000-11-28 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/incomplete1.C: New test. - -2000-11-28 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/friend9.C: New test. - -2000-11-28 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/20001127-1.c: New test. - -2000-11-27 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/friend46.C: New test. - -2000-11-27 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/ptrmem8.C: New test. - -2000-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/string-opt-7.c: New test. - * gcc.c-torture/execute/string-opt-8.c: Likewise. - -2000-11-26 Gabriel Dos Reis <gdr@codesourcery.com> - - * lib/g++.exp (g++_include_flags): Invoke 'tests_flags --compiler' - instead of 'mkcheck 2'. - -2000-11-25 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.c-torture/execute/memcheck/driver.c, - gcc.c-torture/execute/memcheck/driver.h, gcc.dg/cpp/if-3.c: Change - C9X references to refer to C99. - -2000-11-25 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/ultrasp3.c: New test. - -2000-11-25 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/include2.c: Update test to be locale independent. - -2000-11-25 Alexandre Oliva <aoliva@redhat.com> - - * gcc.c-torture/compile/20001123-2.c: New. - -2000-11-24 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> - - * g++.old-dega/g++.pt/ttp62.C: Call abort() on failure. - -2000-11-24 Bernd Schmidt <bernds@redhat.co.uk> - - * gcc.dg/sequence-point-1.c: Add some new tests. - * gcc.c-torture/execute/20001124-1.c: New test. - -2000-11-24 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/vaarg4.C: New test. - * gcc.c-torture/compile/20001123-1.c: New test. - -2000-11-24 Nathan Sidwell <nathan@codesourcery.com> - - * g++.other/crash24.C: Adjust and remove XFAIL. - * g++.other/crash37.C: New test. - -2000-11-23 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/instantiate9.C: New test. - -2000-11-22 Mark Mitchell <mark@codesourcery.com> - - * g++.old-deja/g++.other/decl4.C: Tweak so that it fails with the - new ABI, too. - - * g++.old-deja/g++.mike/p6610a.C: This test no longer fails. - * g++.old-deja/g++.robertl/eb55.C: Likewise. - -2000-11-22 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/Wtrigraphs.c: New test. - -2000-11-22 Loren J. Rittle <ljrittle@acm.org> - - * g++.old-deja/g++.robertl/eb39.C: Don't include libio.h. - -2000-11-22 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/ieee/20001122-1.c: New test. - -2000-11-22 Hans-Peter Nilsson <hp@bitrange.com> - - * lib/gcc-dg.exp: load_lib scanasm.exp. - (scan-assembler, scan-assembler-not): Break out to scanasm.exp. - * lib/g++-dg.exp: load_lib scanasm.exp. - * lib/scanasm.exp: New. - (scan-assembler, scan-assembler-not): Add optional arguments to - test name, or if not present, the pattern name. - (scan-assembler-dem, scan-assembler-dem-not): New. - - * g++.dg/dg.exp: New. - -2000-11-21 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/integrated1.c: Remove. - -2000-11-21 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20001121-1.c: New test. - -2000-11-21 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/compile/20001121-1.c: New test. - -2000-11-20 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/integrated1.c: New test. - -2000-11-21 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/inline17.C: New test. - -2000-11-20 Donald Lindsay <dlindsay@redhat.com> - - * gcc.dg/20000614-2.c: Bug fix. This test expected an unitialized - local variable to be zero: I made the variable global. Now - uses abort() and exit() instead of relying on main's return value. - -2000-11-20 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/paste2.c: Update test. - * objc/execute/paste.m: New test. - -2000-11-20 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c99-condexpr-1.c: New test. - -2000-11-20 Neil Booth <neilb@earthling.net> - - * gcc.dg/cpp/macsyntx.c: Use correct command line option. - -2000-11-20 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/export1.C: New test. - -2000-11-20 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/20001117-1.c: New test. - -2000-11-18 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/execute/nestfunc-3.c (main): Mask result to 32 bits. - -2000-11-18 Richard Henderson <rth@redhat.com> - - * lib/c-torture.exp (TORTURE_OPTIONS): Remove -fssa. - * lib/f-torture.exp (TORTURE_OPTIONS): Likewise. - * lib/gcc-dg.exp (TORTURE_OPTIONS): Likewise. - -2000-11-18 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/execute/20001009-2.c (foo): Rename from main. - (main): New. Exit cleanly. - -2000-11-18 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c90-fordecl-1.c, gcc.dg/c99-fordecl-1.c, - gcc.dg/c99-fordecl-2.c: New tests. - -2000-11-18 Richard Henderson <rth@redhat.com> - - * gcc.c-torture/execute/zerolen-1.c: Rename from 20001115-1.c. - * gcc.c-torture/execute/zerolen-2.c: New. - -2000-11-18 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> - - * gcc.c-torture/execute/20001115-1.c: Don't access nonexistant - memory. - -2000-11-17 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/instantiate8.C: New test. - -2000-11-17 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/incomplete.C: Add more tests. - * g++.old-deja/g++.pt/crash9.C: Mark new expected error. - -2000-11-16 Nick Clifton <nickc@redhat.com> - - * gcc.c-torture/execute/nestfunc-2.c: New test. - * gcc.c-torture/execute/nestfunc-3.c: New test. - -2000-11-11 Bernd Schmidt <bernds@redhat.co.uk> - - * gcc.c-torture/compile/20001116-1.c: New test. - -2000-11-15 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> - - * gcc.c-torture/execute/20001115-1.c: New test. - -2000-11-15 Mark Mitchell <mark@codesourcery.com> - - * g++.old-deja/g++.abi/arraynew.C: Use `std' where necessary. - * g++.old-deja/g++.abi/cxa_vec.C: Likewise. - * g++.old-deja/g++.abi/ptrflags.C: Likewise. - * g++.old-deja/g++.abi/vmihint.C: Likewise. - -2000-11-15 Neil Booth <neilb@earthling.net> - - gcc.dg/cpp/_Pragma1.c: Update. - gcc.dg/cpp/_Pragma2.c: New test. - -2000-11-15 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/anon5.C: New test. - -2000-11-14 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c90-const-expr-2.c, gcc.dg/c99-const-expr-2.c: Add more - tests. - -2000-11-14 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20000801-4.c: Make sure the second string is - output. - -2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/wtr-label-1.c, gcc.dg/990214-1.c: Add semicolons after - labels at end of compound statements. - -2000-11-13 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/loop-7.c: New test. - -2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c99-mixdecl-1.c, gcc.dg/c90-mixdecl-1.c: New tests. - -2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c99-bool-1.c: New test. - -2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk> - - * gcc.dg/c99-scope-1.c: Remove xfail. - * gcc.dg/c99-scope-2.c: New test. - -2000-11-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/string-opt-3.c: Also test builtin rindex. - * gcc.c-torture/execute/string-opt-4.c: Also test builtin index. - -2000-11-11 Mark Mitchell <mark@codesourcery.com> - - * g++.brendan/err-msg8.C: Avoid capricious line-number issues with - error messages. - - * g++.mike/p700.C: Don't typedef wchar_t. - * g++.mike/p784.C: Likewise. - * g++.mike/eb101.C: Don't use __wchar_t. - -2000-11-11 Toon Moene <toon@moene.indiv.nluug.nl> - - * g77.f-torture/execute/20001111.[fx]: Test premature exit - from DO loop. - -2000-11-11 Bernd Schmidt <bernds@redhat.co.uk> - - * gcc.c-torture/execute/20001111-1.c: New test. - -2000-11-10 Nick Clifton <nickc@redhat.com> - - * gcc.c-torture/execute/20001108-1.c: Add test of unsigned long - long multuiple and accumulate. - -2000-11-09 Richard Henderson <rth@redhat.com> - - * gcc.dg/sequence-pt-1.c: Cast from pointer to integer - via size_t instead of int. - - * gcc.c-torture/execute/string-opt-1.c: Make stub functions static. - * gcc.c-torture/execute/string-opt-2.c: Likewise. - * gcc.c-torture/execute/string-opt-3.c: Likewise. - * gcc.c-torture/execute/string-opt-4.c: Likewise. - -2000-11-09 Geoffrey Keating <geoffk@redhat.com> - - * gcc.c-torture/compile/20001109-1.c: New test. - * gcc.c-torture/compile/20001109-2.c: New test. - -2000-11-09 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/operator1.C: New test. - * g++.old-deja/g++.brendan/err-msg8.C: Adjust error line. - -2000-11-09 Jakub Jelinek <jakub@redhat.com> - - * gcc.dg/20001108-1.c: New test. - -2000-11-09 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/string-opt-1.c: Add test for strstr - with both arguments constant strings. - * gcc.c-torture/execute/string-opt-3.c: New test. - * gcc.c-torture/execute/string-opt-4.c: New test. - * gcc.c-torture/execute/string-opt-5.c: New test. - -2000-11-08 Nick Clifton <nickc@redhat.com> - - * gcc.c-torture/execute/20001108-1.c: New test case. Checks - mulsidi3adddi patterns. - -2000-11-08 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.other/crash36.C: New test. - -2000-11-08 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/init16.C: New test. - -2000-11-06 Loren J. Rittle <ljrittle@acm.org> - - * g++.old-deja/g++.mike/p6610a.C: Update XFAIL. - -2000-11-07 Jeffrey Oldham <oldham@oz.codesourcery.com> - - * gcc.c-torture/execute/va-arg-15.x: Changed to mips*-sgi-irix6.*. - * gcc.c-torture/execute/va-arg-16.x: Likewise. - * gcc.c-torture/execute/va-arg-17.x: Likewise. - -2000-11-07 DJ Delorie <dj@redhat.com> - - * testsuite/gcc.dg/20000614-1.c: Add return so that test can pass. - -2000-11-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/string-opt-1.c: New test. - -2000-11-07 Jeffrey Oldham <oldham@oz.codesourcery.com> - - * gcc.c-torture/execute/va-arg-15.x: New file. Fails on - mips-sgi-irix6.* because the MIPS ABI passes floating-point - parameters in registers, and there is no way for a varargs - function to know in which order the integer and floating-point - parameters should be interleaved when they are placed on the - stack. - * gcc.c-torture/execute/va-arg-16.x: Likewise. - * gcc.c-torture/execute/va-arg-17.x: Likewise. - -2000-11-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * gcc.c-torture/execute/string-opt-2.c: New test. - -2000-11-07 Nathan Sidwell <nathan@codesourcery.com> - - * g++.old-deja/g++.pt/crash60.C: New test. - -2000-11-06 Jakub Jelinek <jakub@redhat.com> - - * g++.old-deja/g++.other/crash24.C: New test. - * g++.old-deja/g++.other/crash25.C: New test. - * g++.old-deja/g++.other/crash26.C: New test. - * g++.old-deja/g++.other/crash27.C: New test. - * g++.old-deja/g++.other/crash28.C: New test. - * g++.old-deja/g++.other/crash29.C: New test. - * g++.old-deja/g++.other/crash30.C: New test. - * g++.old-deja/g++.other/crash31.C: New test. - * g++.old-deja/g++.other/crash32.C: New test. - * g++.old-deja/g++.other/crash33.C: New test. - * g++.old-deja/g++.other/crash34.C: New test. - * g++.old-deja/g++.other/crash35.C: New test. - -2000-11-06 Jakub Jelinek <jakub@redhat.com> - - * gcc.c-torture/execute/20001031-1.c: New test. - -2000-11-04 Mark Mitchell <mark@codesourcery.com> - - * g++.old-deja/g++.brendan/misc13.C: Put `strlen' in `std' - namespace. - - * g++.old-deja/g++.law/weak.C: Fix uses of iostreams to be - standards-conformant. - - * g++.old-deja/g++.mike/net5.C: Put `abort' in `std' namespace. - - * g++.old-deja/g++.mike/p755.C: Tweak handling of exit. - * g++.old-deja/g++.mike/p755a.C: Likewise. +2000-12-06 Kriang Lerdsuwanakij <lerdsuwa@users.sou * g++.old-deja/g++.mike/p9706.C: Don't assume that the standard library makes no calls to `operator new' during initialization. @@ -18773,670 +14228,7 @@ Thu Apr 27 15:58:18 MET DST 2000 Jan Hubicka <jh@suse.cz> * g++.old-deja/g++.ns/koenig8.C: New test. -2000-01-05 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/cast4.C: New test. - -2000-01-05 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/20000105-2.c: New test. - * gcc.c-torture/compile/20000105-1.c: New test. - -2000-01-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * g++.old-deja/g++.brendan/array1.C: Modify explicit external libc - references to printf & atoi to conform to ANSI standard. - * g++.old-deja/g++.brendan/code-gen1.C: Likewise. - * g++.old-deja/g++.brendan/code-gen2.C: Likewise. - * g++.old-deja/g++.brendan/code-gen3.C: Likewise. - * g++.old-deja/g++.brendan/code-gen4.C: Likewise. - * g++.old-deja/g++.brendan/code-gen6.C: Likewise. - * g++.old-deja/g++.brendan/complex1.C: Likewise. - * g++.old-deja/g++.brendan/copy1.C: Likewise. - * g++.old-deja/g++.brendan/copy2.C: Likewise. - * g++.old-deja/g++.brendan/copy3.C: Likewise. - * g++.old-deja/g++.brendan/copy4.C: Likewise. - * g++.old-deja/g++.brendan/copy5.C: Likewise. - * g++.old-deja/g++.brendan/copy6.C: Likewise. - * g++.old-deja/g++.brendan/copy7.C: Likewise. - * g++.old-deja/g++.brendan/copy8.C: Likewise. - * g++.old-deja/g++.brendan/crash11.C: Likewise. - * g++.old-deja/g++.brendan/crash14.C: Likewise. - * g++.old-deja/g++.brendan/ctors1.C: Likewise. - * g++.old-deja/g++.brendan/ctors2.C: Likewise. - * g++.old-deja/g++.brendan/delete2.C: Likewise. - * g++.old-deja/g++.brendan/dtors1.C: Likewise. - * g++.old-deja/g++.brendan/dtors2.C: Likewise. - * g++.old-deja/g++.brendan/dtors3.C: Likewise. - * g++.old-deja/g++.brendan/eh1.C: Likewise. - * g++.old-deja/g++.brendan/groff1.C: Likewise. - * g++.old-deja/g++.brendan/init3.C: Likewise. - * g++.old-deja/g++.brendan/misc12.C: Likewise. - * g++.old-deja/g++.brendan/misc7.C: Likewise. - * g++.old-deja/g++.brendan/new2.C: Likewise. - * g++.old-deja/g++.brendan/operators4.C: Likewise. - * g++.old-deja/g++.brendan/operators5.C: Likewise. - * g++.old-deja/g++.brendan/overload2.C: Likewise. - * g++.old-deja/g++.brendan/overload7.C: Likewise. - * g++.old-deja/g++.brendan/redecl2.C: Likewise. - * g++.old-deja/g++.brendan/reference1.C: Likewise. - * g++.old-deja/g++.brendan/sizeof5.C: Likewise. - * g++.old-deja/g++.brendan/template24.C: Likewise. - * g++.old-deja/g++.brendan/template3.C: Likewise. - * g++.old-deja/g++.brendan/vtables1.C: Likewise. - * g++.old-deja/g++.jason/inline3.C: Likewise. - * g++.old-deja/g++.jason/opeq.C: Likewise. - * g++.old-deja/g++.law/arg5.C: Likewise. - * g++.old-deja/g++.law/arm7.C: Likewise. - * g++.old-deja/g++.law/ctors11.C: Likewise. - * g++.old-deja/g++.law/cvt8.C: Likewise. - * g++.old-deja/g++.law/init9.C: Likewise. - * g++.old-deja/g++.law/refs4.C: Likewise. - * g++.old-deja/g++.law/template2.C: Likewise. - * g++.old-deja/g++.law/visibility24.C: Likewise. - * g++.old-deja/g++.law/vtable3.C: Likewise. - * g++.old-deja/g++.mike/asm2.C: Likewise. - * g++.old-deja/g++.mike/eh1.C: Likewise. - * g++.old-deja/g++.mike/misc1.C: Likewise. - * g++.old-deja/g++.mike/misc13.C: Likewise. - * g++.old-deja/g++.mike/misc14.C: Likewise. - * g++.old-deja/g++.mike/ns12.C: Likewise. - * g++.old-deja/g++.mike/p1248.C: Likewise. - * g++.old-deja/g++.mike/p3708.C: Likewise. - * g++.old-deja/g++.mike/p3708a.C: Likewise. - * g++.old-deja/g++.mike/p3708b.C: Likewise. - * g++.old-deja/g++.mike/p646.C: Likewise. - * g++.old-deja/g++.mike/p700.C: Likewise. - * g++.old-deja/g++.mike/p783.C: Likewise. - * g++.old-deja/g++.mike/p783a.C: Likewise. - * g++.old-deja/g++.mike/p783b.C: Likewise. - * g++.old-deja/g++.mike/p786.C: Likewise. - * g++.old-deja/g++.mike/p789.C: Likewise. - * g++.old-deja/g++.mike/p789a.C: Likewise. - * g++.old-deja/g++.mike/p807a.C: Likewise. - * g++.old-deja/g++.other/delete3.C: Likewise. - * g++.old-deja/g++.other/dyncast1.C: Likewise. - * g++.old-deja/g++.other/dyncast2.C: Likewise. - * g++.old-deja/g++.other/dyncast3.C: Likewise. - * g++.old-deja/g++.other/empty1.C: Likewise. - * g++.old-deja/g++.other/temporary1.C: Likewise. - * g++.old-deja/g++.pt/memtemp14.C: Likewise. - * g++.old-deja/g++.pt/t16.C: Likewise. - * g++.old-deja/g++.pt/tiemann2.C: Likewise. - -1999-12-30 Bernd Schmidt <bernds@cygnus.co.uk> - - * gcc.dg/991230-1.c: New test. - -1999-12-29 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/991229-3.c: New test. - * gcc.c-torture/compile/991229-2.c: New test. - * gcc.c-torture/compile/991229-1.c: New test. - -1999-12-29 Greg McGary <gkm@eng.ascend.com> - - * gcc.c-torture/compile/labels-2.c: New test. - -1999-12-27 Martin von Löwis <loewis@informatik.hu-berlin.de> - - * gcc.c-torture/execute/991227-1.c: New test. - -1999-12-22 Alexandre Oliva <oliva@lsd.ic.unicamp.br> - - * g++.old-deja/g++.pt/instantiate6.C: Remove excess errors XFAIL. - -1999-12-21 Martin von Löwis <loewis@informatik.hu-berlin.de> - - * gcc.c-torture/execute/991221-1.c: New test. - -1999-12-20 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/cast3.C: New test. - -1999-12-16 Bernd Schmidt <bernds@cygnus.co.uk> - - * gcc.c-torture/execute/991216-4.c: New test. - -1999-12-16 Michael Meissner <meissner@cygnus.com> - - * gcc.c-torture/execute/991216-1.c: New test. - * gcc.c-torture/execute/991216-2.c: New test. - * gcc.c-torture/execute/991216-3.c: New test. - -1999-12-14 Bernd Schmidt <bernds@cygnus.co.uk> - - * gcc.dg/991214-1.c: Use "__asm__", not "asm". - Actually make the test fail by using "-O2" for compilation. - -1999-12-15 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.warn/cast-align1.C: New test. - -1999-12-14 Bernd Schmidt <bernds@cygnus.co.uk> - - * gcc.c-torture/compile/991214-1.c: New test. - * gcc.c-torture/compile/991214-2.c: New test. - -1999-12-14 Bernd Schmidt <bernds@cygnus.co.uk> - - * gcc.dg/991214-1.c: New test. - -1999-12-13 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/991213-3.c: New test. - * gcc.c-torture/compile/991213-2.c: New test. - * gcc.c-torture/compile/991213-1.c: New test. - -1999-12-10 J"orn Rennecke <amylaar@cygnus.co.uk> - - * gcc.dg/991209-1.c: New test. - -1999-12-08 Nathan Sidwell <nathan@acm.org> - - * gcc.c-torture/compile/991208-1.c: New test. - -1999-12-06 Alexandre Oliva <oliva@lsd.ic.unicamp.br> - - * gcc.dg/ultrasp2.c: New test. - -1999-12-05 Alex Samuel <samuel@codesourcery.com> - - * g++.old-deja/g++.abi/align.C (main): Fix typo. - -1999-12-02 Bernd Schmidt <bernds@cygnus.co.uk> - - * gcc.c-torture/compile/991202-1.c: New test. - * gcc.c-torture/execute/991202-1.c: New test. - * gcc.c-torture/execute/991202-2.c: New test. - * gcc.c-torture/execute/991202-3.c: New test. - -1999-12-02 Alex Samuel <samuel@codesourcery.com> - - * g++.old-deja/g++.abi/align.C: New test. - * g++.old-deja/g++.abi/aggregates.C: Likewise. - * g++.old-deja/g++.abi/bitfields.C: Likewise. - -1999-12-01 Richard Henderson <rth@cygnus.com> - - * gcc.c-torture/execute/991201-1.c: New. - -1999-11-29 Bernd Schmidt <bernds@cygnus.co.uk> - - * gcc.dg/991129-1.c: New test. - -1999-11-27 Bernd Schmidt <bernds@cygnus.co.uk> - - * gcc.c-torture/compile/991127-1.c: New test. - -1999-11-22 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/warn4.C: New test. - -1999-11-22 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.eh/cleanup2.C: New test. - * g++.old-deja/g++.ext/pretty2.C: New test. - * g++.old-deja/g++.ext/pretty3.C: New test. - * g++.old-deja/g++.other/debug6.C: New test. - -1999-10-20 Jim Wilson <wilson@cygnus.com> - - * gcc.c-torture/noncompile/noncompile.exp: For 940510-1.c, change - compiler_output to look for one error message instead of two. - -1999-11-19 Geoffrey Keating <geoffk@cygnus.com> - - * gcc.c-torture/execute/991118-1.c: Also test case - where the word boundary does not split a byte evenly. - -1999-11-19 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.ext/restrict1.C: New test. - -1999-11-18 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl> - - * gcc.c-torture/execute/991118-1.c: New test. - -1999-11-16 Geoffrey Keating <geoffk@cygnus.com> - - * g77.f-torture/execute/u77-test.f (wd): Allow for longer - working directory pathnames. - -1999-10-13 Brendan Kehoe <brendan@cygnus.com> - - * gcc.c-torture/execute/memcheck/memcheck.exp: Make sure a remote - host is equipped with driver.h and driver.o so it can actually - compile and run the tests. - -1999-10-08 Bernd Schmidt <bernds@cygnus.co.uk> - - * gcc.c-torture/compile/991008-1.c: New test. - -1999-11-08 Nick Clifton <nickc@cygnus.com> - - * lib/gcc-dg.exp: Include target-supports.exp - -1999-11-05 Nick Clifton <nickc@cygnus.com> - - * lib/target-supports.exp: New file: Provide procs to test for - features supported by the target. - (check_weak_available): Moved here from ecos.exp. - (check_alias_available): New proc: Determine of the target - toolchain supports the alias attribute. - - * gcc.dg/special/ecos.exp: Move check_weak_available to - target-supports.exp. - (alias-1.c): Only perform the test if the target supports - aliases. - (wkali-1.c): Only perform the test if the target supports - aliases. - - * gcc.dg/990506-0.c: Expect error messages from cross - targets as well as native targets. - -1999-11-02 Alexandre Oliva <oliva@lsd.ic.unicamp.br> - - * gcc.dg/ultrasp1.c: Removed xfail. - * gcc.dg/struct-ret-2.c: Likewise. - * gcc.dg/array-1.c: Likewise. - -1999-11-01 Alexandre Oliva <oliva@lsd.ic.unicamp.br> - - * gcc.dg/struct-ret-2.c: New test. - - * gcc.dg/array-1.c: New test. - -1999-10-30 Stephen L Moshier <moshier@mediaone.net> - - * gcc.c-torture/execute/991030-1.c: New test. - -1999-10-26 Richard Henderson <rth@cygnus.com> - - * gcc.c-torture/compile/991026-2.c: New test. - -1999-10-26 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/991026-1.c: New test. - -1999-10-23 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/execute/991023-1.c: New test. - -1999-10-19 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/execute/991019-1.c: New test. - -1999-10-16 Richard Henderson <rth@cygnus.com> - - * gcc.c-torture/execute/991016-1.c: New test. - -1999-10-14 Stephane Carrez <stcarrez@worldnet.fr> - - * gcc.c-torture/execute/991014-1.c: New test. - -1999-10-13 J"orn Rennecke <amylaar@cygnus.co.uk> - - * g++.old-deja/g++.other/union2.C: New test. - -1999-10-13 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/vaarg2.C: New test. - * g++.old-deja/g++.other/vaarg3.C: New test. - -1999-10-12 Craig Burley <craig@jcb-sc.com> - - * g77.f-torture/noncompile/19990905-1.f: Moved from being - in compile/. - -1999-10-04 Ulrich Drepper <drepper@cygnus.com> - - * gcc.c-torture/execute/va-arg-11.c: New test. - -1999-10-01 Mark P. Mitchell <mark@codesourcery.com> - - * lib/file-format.exp (gcc_target_object_format): Don't - crash if objdump is unavailable. - -1999-09-29 Donn Terry <donn@interix.com> - - * gcc.misc-tests/mg.exp: delete extraneous redirection. - -1999-09-28 Nick Clifton <nickc@cygnus.com> - - * gcc.c-torture/compile/990928-1.c: New test. - -1999-09-28 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/decl6.C: New test. - -1999-09-28 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> - - * gcc.c-torture/execute/va-arg-10.c: New test. - -1999-09-27 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.pt/memtemp77.C: Adjust expected - __PRETTY_FUNCTION__. - -1999-09-23 Nick Clifton <nickc@cygnus.com> - - * gcc.c-torture/execute/990923-1.c: New test. - -1999-09-21 Nick Clifton <nickc@cygnus.com> - - * gcc.c-torture/special/special.exp: Add FR30 to list of targets - for which -fpic is inappropriate. - -1999-09-21 Mark Mitchell <mark@codesourcery.com> - - * g++.dg/ecos.exp: Don't supply -finit-priority to cc1plus. - -1999-09-21 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/dyncast1.C: New test. - * g++.old-deja/g++.other/dyncast2.C: New test. - * g++.old-deja/g++.other/dyncast3.C: New test. - * g++.old-deja/g++.other/dyncast4.C: New test. - * g++.old-deja/g++.other/dyncast5.C: New test. - * g++.old-deja/g++.eh/catch3.C: New test. - * g++.old-deja/g++.eh/catch3p.C: New test. - * g++.old-deja/g++.eh/catch4.C: New test. - * g++.old-deja/g++.eh/catch4p.C: New test. - * g++.old-deja/g++.eh/catch5.C: New test. - * g++.old-deja/g++.eh/catch5p.C: New test. - * g++.old-deja/g++.eh/catch6.C: New test. - * g++.old-deja/g++.eh/catch6p.C: New test. - * g++.old-deja/g++.eh/catch7.C: New test. - * g++.old-deja/g++.eh/catch7p.C: New test. - * g++.old-deja/g++.eh/catch8.C: New test. - * g++.old-deja/g++.eh/catch8p.C: New test. - * g++.old-deja/g++.eh/catch9.C: New test. - * g++.old-deja/g++.eh/catch9p.C: New test. - -1999-09-13 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/sizeof3.C: Remove XFAILS. - * g++.old-deja/g++.other/sizeof4.C: Remove XFAILS. - -1999-09-13 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/990913-1.c: New test. - -1999-09-10 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.jason/rfg4.C: Revert erroneous change, add -w. - * g++.old-deja/g++.jason/rfg5.C: Likewise. - -1999-09-09 Richard Henderson <rth@cygnus.com> - - * g++.old-deja/g++.other/delete6.C: Use size_t with operator new. - -1999-09-09 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/lookup11.C: New test. - * g++.old-deja/g++.bugs/900428_01.C: Rework now we understand - what is permitted and what we want. - * g++.old-deja/g++.jason/rfg4.C: Rework to remove ill-formed - overload use. - * g++.old-deja/g++.jason/rfg5.C: Likewise - -1999-09-08 Geoffrey Keating <geoffk@cygnus.com> - - * gcc.c-torture/noncompile/noncompile.exp: Add poison-1.c. - * gcc.c-torture/noncompile/poison-1.c: New file. - -1999-09-08 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/sizeof3.C: New test. - * g++.old-deja/g++.other/sizeof4.C: New test. - * g++.old-deja/g++.other/ambig2.C: Mark XFAILs. - * g++.old-deja/g++.other/lookup16.C: Mark XFAIL. - -1999-09-07 Richard Henderson <rth@cygnus.com> - - * gcc.dg/va-arg-1.c: New. - -1999-09-06 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> - - * gcc.c-torture/execute/va-arg-9.c: New test. - -1999-09-05 Craig Burley <craig@jcb-sc.com> - - * g77.f-torture/compile/980519-2.f: New test. - * g77.f-torture/compile/19990905-0.f: New test. - * g77.f-torture/compile/19990905-1.f: New test. - * g77.f-torture/compile/19990905-2.f: New test. - - * g77.f-torture/noncompile/19990826-4.f: Clarify who wrote what. - -1999-09-03 Richard Earnshaw <rearnsha@arm.com> - - * gcc.c-torture/execute/990827-1.c: Fix typo. - -1999-09-03 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/deref1.C: New test. - -1999-09-02 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/ambig2.C: New test. - * g++.old-deja/g++.other/cond5.C: New test. - * g++.old-deja/g++.other/lookup16.C: New test. - -1999-09-02 Marc Espie <espie@cvs.openbsd.org> - - * gcc.dg/980414-1.c: Fix assembler syntax to work with old - assemblers too. - -1999-08-31 Jeffrey A Law (law@cygnus.com) - - * lib/c-torture.exp: Avoid the "compare executables" optimization - when testing native. - -1999-08-29 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/execute/990829-1.c: New test. - * gcc.c-torture/compile/990829-1.c: New test. - -1999-08-27 Paul Burchard <burchard@pobox.com> - - * g++.old-deja/g++.pt/derived3.C: Renamed from lss-001.C. - * g++.old-deja/g++.pt/ttp56.C: Renamed from lss-002.C. - * g++.old-deja/g++.pt/decl4.C: Renamed from lss-003.C. - * g++.old-deja/g++.pt/memtemp85.C: Renamed from lss-004.C. - * g++.old-deja/g++.pt/memtemp86.C: Renamed from lss-005.C. - * g++.old-deja/g++.pt/memtemp87.C: Renamed from lss-006.C. - * g++.old-deja/g++.pt/static10.C: Renamed from lss-007.C. - * g++.old-deja/g++.pt/memtemp88.C: Renamed from lss-008.C. - * g++.old-deja/g++.pt/memtemp89.C: Renamed from lss-009.C. - * g++.old-deja/g++.pt/memtemp90.C: Renamed from lss-010.C. - * g++.old-deja/g++.pt/memtemp91.C: Renamed from lss-011.C. - -1999-08-27 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/execute/990827-1.c: New test. - -1999-08-26 Craig Burley <craig@jcb-sc.com> - - * g77.f-torture/noncompile/19990826-4.f: New test. - - * g77.f-torture/compile/19990826-3.f: New test. - - * g77.f-torture/execute/19990826-2.f: New test. - - * g77.f-torture/compile/19990826-1.f: New test. - - * gcc.c-torture/execute/990826-0.c: New test. - * g77.c-torture/execute/19990826-0.f: New test. - - * g77.f-torture/noncompile/970626-2.f: New test. - -1999-08-25 Paul Burchard <burchard@pobox.com> - - * g++.old-deja/g++.pt/lss-001.C, lss-002.C, lss-003.C, lss-004.C, - lss-005.C, lss-006.C, lss-007.C, lss-008.C, lss-009.C, lss-010.C, - lss-011.C: New tests. - -1999-08-25 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/decl5.C: New test. - -1999-08-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> - - * noncompile/noncompile.exp: Load_lib c-torture.exp. - (postbase_with_opts): New proc to loop over TORTURE_OPTIONS and - call `postbase' for each one. All callers of `postbase' changed - to call this instead. - -1999-08-11 Richard Earnshaw (rearnsha@arm.com) - - * gcc.c-torture/execute/990811-1.c: New test. - -1999-08-09 Nick Clifton <nickc@cygnus.com> - - * gcc.misc-tests/m-un-2.c: Expect the warnings for all builds, not - just native ones. - - * gcc.dg/990413-1.c: Expect the parse error for all builds, not - just native ones. - -1999-08-05 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.other/local3.C: Removed XFAIL. - -1999-08-04 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/execute/970312-1.c: Delete duplicate test. - -1999-08-04 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.eh/spec6.C: Add more tests. Remove XFAILS. - -1999-08-04 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/execute/990804-1.c: New test. - -1999-08-03 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.brendan/crash63.C: Expect a POD warning - * g++.old-deja/g++.brendan/crash64.C: Likewise - * g++.old-deja/g++.brendan/overload8.C: Likewise - -1999-08-03 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/struct1.C: New test. - -1999-08-03 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/enum2.C: New test. - -1999-08-02 Richard Henderson <rth@cygnus.com> - - Adapted from tests from Franz Sirl: - * gcc.c-torture/execute/va-arg-7.c: New test. - * gcc.c-torture/execute/va-arg-8.c: New test. - -1999-08-01 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/990801-2.c: New test. - - * gcc.c-torture/compile/990801-1.c: New test. - -1999-07-27 Michael Meissner <meissner@cygnus.com> - - * gcc.c-torture/execute/ieee/fp-cmp-2.c: New file, clone from - fp-cmp-1.c, converting double to float. - - * gcc.c-torture/execute/ieee/fp-cmp-3.c: New file, clone from - fp-cmp-1.c, converting double to long double. - - * gcc.c-torture/noncompile/920507-1.c (x): Rename asm register - from fr1 to unknown_register, since fr1 is a legitimate register - on some machines. - -1999-07-25 Jeffrey A Law (law@cygnus.com) - - * README: More listname related changes. - -1999-07-08 Catherine Moore <clm@cygnus.com> - - * gcc.c-torture/execute/920501-5.c: Fix typo. Change | to ||. - -1999-07-05 Manfred Hollstein <mhollstein@cygnus.com> - - * gcc.dg/990703-1.c (y): Terminate definition syntactically correctly. - -1999-07-05 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.other/null1.C: Define l<long> for 64bit hosts. - -1999-07-04 Zack Weinberg <zack@rabi.columbia.edu> - - * gcc.dg/990703-1.c: New test. - -1999-06-29 Nick Clifton <nickc@cygnus.com> - - * lib/file-format.exp: New file: Move definition of proc - gcc_target_object_format to here from - gcc.dg/special/ecos.exp. - - * lib/c-torture.exp: Include lib file-format.exp. - * lib/gcc-dg.exp: Include lib file-format.exp. - - * gcc.dg/special/ecos.exp: Remove definition of proc - gcc_target_object_format. - -1999-06-28 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/execute/990628-1.c: New test. - -1999-06-25 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/990625-2.c: New test. - - * gcc.c-torture/compile/990625-1.c: New test. - -1999-06-23 Nick Clifton <nickc@cygnus.com> - - * gcc.c-torture/compile/dll.c: New test case. Check that dll - attributes compile. - * gcc.c-torture/compile/dll.x: Only support the dll.c test on - ports that use the COFF/PE file format. - -1999-06-17 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/990617-1.c: New test. - -1999-06-17 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.other/decl4.C: New test. - -1999-06-14 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.other/bitfld3.C: New test. - -1999-06-08 Nathan Sidwell <nathan@acm.org> - - * g++.old-deja/g++.eh/catch1.C: New test. - -1999-06-07 Jeffrey A Law (law@cygnus.com) - - * g++.old-deja/g++.mike/p6610a.C: Expect failure on freebsd-elf. - - * gcc.c-torture/execute/ieee/rbug.x: Expect failure on freebsd. - * gcc.c-torture/execute/ieee/mzero.x: New file. Likewise. - -1999-06-05 Craig Burley <craig@jcb-sc.com> - - * g77.f-torture/compile/19990502-0.f: Replace with new, - shorter, test that still fails after recent changes. - -1999-06-04 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> - - * gcc.c-torture/execute/990604-1.c: New test. - -1999-05-31 Jeffrey A Law (law@cygnus.com) +2000-01-05 Nathan Sidwell <nathan@ * gcc.c-torture/execute/990531-1.c: New test. @@ -20010,407 +14802,7 @@ Thu Apr 27 15:58:18 MET DST 2000 Jan Hubicka <jh@suse.cz> * gcc.c-torture/execute/memcheck: New directory of tests for -fcheck-memory-usage. -1998-11-07 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> - - * README: New file, general information about the testsuite and - new description of the various C++ test subdirectories. - * README.g++: Eliminate obsolete information, update and move most - relevant stuff to README. - -1998-11-07 Richard Henderson <rth@cygnus.com> - - * gcc.c-torture/compile/981107-1.c: New test. - -1998-11-02 Doug Evans <devans@canuck.cygnus.com> - - * execute/memcpy-bi.c: New testcase. - -1998-10-31 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.pt/sizeof3.C: A similar testcase not involving - base classes. - - * g++.old-deja/g++.pt/sizeof2.C: Incorrect specialization of base - template is selected. - - * g++.old-deja/g++.ext/arrnew2.C: If new T[n](i) is accepted for - classes, it should be accepted for all types. - - * g++.old-deja/g++.eh/sjlj1.C: Test checked sjlj-exception. - - * g++.old-deja/g++.pt/spec24.C: Ensure that template - specializations start with template headers. - -1998-10-29 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.other/dcast2.C: Cannot dynamic downcast &x. - - * g++.old-deja/g++.other/init9.C: Test cross initialization of - non-POD types. - -1998-10-27 Alexandre Oliva <oliva@dcc.unicamp.br> - - * lib/old-dejagnu.exp (old-dejagnu): Document `Additional sources'. - -1998-10-22 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> - - * compile/981022-1.c, compile/981022-1.x: New test and driver. - -1998-10-19 Jeffrey A Law (law@cygnus.com) - - * 981019-1.c: New test. - -1998-10-14 Robert Lipe <robertl@dgii.com> - - * lib/objc-torture.exp (objc-torture-execute): Add -I so we can - find objc headers. - -1998-10-14 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> - - * compile/981001-4.c: Remove use of GCC extension that triggers a - compiler bug. - -1998-10-13 Alexandre Oliva <oliva@dcc.unicamp.br> - - * lib/old-dejagnu.exp (old-dejagnu): Support `Additional sources:'. - -1998-10-12 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.pt/explicit74.C: New test. Explicit - instantiation of template produces incorrect code for delete - expression. - - * g++.old-deja/g++.pt/instantiate5.C: New test. `global - constructors' name is not unique. - * g++.old-deja/g++.pt/instantiate5.cc: Ditto. - * g++.old-deja/g++.pt/instantiate5-main.cc: Ditto. - - * g++.old-deja/g++.other/init8.C: New test. Uninitialized - automatic array of const is ill-formed. - - * g++.old-deja/g++.pt/ttp53.C: New test. Incorrect substitution - of template parameter? - - * g++.old-deja/g++.other/conv3.C: New test. Conversion discards - const. - - * g++.old-deja/g++.other/pmf2.C: New test. Invalid - pointer-to-member expression. - - * g++.old-deja/g++.other/friend5.C: New test. Bogus friend - declaration causes ICE. - -1998-10-11 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.ns/main1.C: New test. main() should only be - reserved in the global namespace. - - * g++.old-deja/g++.pt/instantiate4.C: New test: -frepo does not - generate needed virtual table. - - * lib/old-dejagnu.exp (old-dejagnu): Support `Build then link:'. - -1998-10-10 Dariush Eslimi <eslimi@loran.com> - - * g++.old-deja/g++.ext/typeof1.C: New test; typeof based on - template-dependent type - -1998-10-10 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.brendan/parse3.C: XFAILs, not ERRORs. - * g++.old-deja/g++.brendan/parse5.C: XFAILs, not ERRORs. - * g++.old-deja/g++.brendan/parse6.C: XFAILs, not ERRORs. - - * g++.old-deja/g++.other/using5.C: New test; using decl from base - class should be usable as argument of member function. - * g++.old-deja/g++.other/using6.C: New test; using decl from base - class should be usable as return type of member function. - * g++.old-deja/g++.other/using7.C: New test; using decl from base - class should be usable as type of data member. - - * g++.old-deja/g++.ns/extern1.C: Fix XFAIL mark. - -1998-10-09 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/special/920521-1.c: Fix bogus test. - -1998-10-08 Nick Clifton <nickc@cygnus.com> - - * gcc.dg/dll-?.c Add thumb to target list. - Fix assembler scan patterns to match current assembler output. - -1998-10-08 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.pt/expr6.C: New test. operator?: breaks - matching of template brackets. - - * g++.old-deja/g++.other/using4.C: New test. Test using - declarations of methods from base classes. - - * g++.old-deja/g++.ns/extern1.C: New test. Extern declarations - within functions should introduce names into the innermost - enclosing namespace. - - * g++.old-deja/g++.other/init7.C: New test. Retry initialization - of static locals if first initialization throws. - -1998-10-07 Jim Wilson <wilson@cygnus.com> - - * gcc.c-torture/compile/981007-1.c: New test for irix6 -O0 core dump. - -1998-10-06 Ken Raeburn <raeburn@cygnus.com> - - * gcc.c-torture/special/981006-1.c: New test. Make sure gcc doesn't - lose track of the possible targets of tablejump insns. - * special/special.exp: Run it. - -1998-10-06 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.pt/friend35.C: New test. A template function - must be declared before its specializations can be named in friend - declarations. - -1998-10-05 Dave Love <d.love@dl.ac.uk> - - * g77.f-torture/execute/u77-test.f: Add regression test for RAND. - - * g77.f-torture/execute/io1.f: New test. - -1998-10-04 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.pt/overload5.C: New test; initialize variable - with pointer to template function, for which no argument deduction - is possible. - - * g++.old-deja/g++.pt/overload4.C: New test; passing pointer to - specialization of template function as argument to template - function. - - * g++.old-deja/g++.other/access2.C: New test; Inner class - shouldn't have privileged access to Outer's names. - -1998-10-03 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.pt/friend34.C: New test; name injection of - friend template declared within template class conflicts with - nested class of the same name. - - * g++.old-deja/g++.other/badopt1.C: New test; post-increment - is ignored. - - * g++.old-deja/g++.other/decl1.C: New test; incorrect parsing of - object with direct initializer as function declaration. - - * g++.old-deja/g++.other/decl2.C: New test; duplicate - initializers. - - * g++.old-deja/g++.other/null2.C: New test; conditional operator - involving const pointer and NULL produces incorrect result. - - * g++.old-deja/g++.other/typename1.C: New test; template-dependent - type name without `typename' should be rejected with -pedantic. - -1998-10-02 Richard Henderson <rth@cygnus.com> - - * g++.old-deja/g++.other/addrof1.C: New test. - -1998-10-01 Nick Clifton <nickc@cygnus.com> - - * gcc.c-torture/compile/981001-1.c: New test. - * gcc.c-torture/execute/981001-1.c: New test. - -1998-10-01 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/981001-2.c: New test. - * gcc.c-torture/compile/981001-3.c: New test. - * gcc.c-torture/compile/981001-4.c: New test. - -1998-10-01 Robert Lipe <robertl@dgii.com> - - * lib/objc.exp (objc_target_compile): Add -L during compiles for - multilibbed hosts. Idea grafted from g77.exp. - -1998-09-30 Dave Love <d.love@dl.ac.uk> - - * g77.f-torture/execute/u77-test.f (main): Excise `hostnm' to - avoid losing on systems which need -lsocket. - -1998-09-28 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.other/bitfld1.C: Expected failure. - * g++.old-deja/g++.other/nested2.C: Ditto. - * g++.old-deja/g++.robertl/eb132.C: No longer an expected - failure. - -1998-09-26 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.other/bitfld1.C: Built-in operator!= should be - preferred over template operator!= for enum bitfields. - -1998-09-18 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.other/nested2.C: Different virtual base classes - that happen to have the same base name, but in different scopes, - are incorrectly rejected. - -1998-09-16 Richard Henderson <rth@cygnus.com> - - * g++.old-deja/g++.brendan/array1.C: Size array via arithmetic based - on the native word size instead of an integer literal. - -1998-09-15 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.other/static2.C: Invocation of static data - member of type pointer-to-function denoted as non-static member. - - * g++.old-deja/g++.other/typedef5.C: Add some more tests involving - checks involving function types and aliases. - -1998-09-12 Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.other/typedef5.C: Check whether typedefs can be - redefined to the same non-trivial type. - - * g++.old-deja/g++.pt/explicit73.C: Test for proper - namespace-qualification of template specializations declared in - other namespaces. - - * g++.old-deja/g++.other/friend4.C: Check whether it is possible - to declare a subset of the specializations of a template function - as friends of specializations of a template class. - - * g++.old-deja/g++.pt/explicit71.C: Make sure specializations of - member templates that do not fully specialize the enclosing - template class are rejected. - -1998-09-11 Dave Love <d.love@dl.ac.uk> - - * g77.f-torture/execute/u77-test.f: Fix bad consistency checks. - -1998-09-08 Dave Love <d.love@dl.ac.uk> - - * g77.f-torture/execute/u77-test.f (main): New file, somewhat - altered from libf2c/libU77 version. - -1998-09-06 Dave Love <d.love@dl.ac.uk> - - * g77.f-torture/execute/io0.f: Test formatted direct i/o too. - -1998-09-04 Reid M. Pinchback <reidmp@MIT.EDU>, Alexandre Oliva <oliva@dcc.unicamp.br> - - * g++.old-deja/g++.pt/explicit72.C: Ensure that char and - (un)signed char are different types for template specialization - purposes. - -1998-09-03 Ovidiu Predescu <ovidiu@aracnet.com> - - * lib/{objc.exp,objc-torture.exp}: New files for objc testing harness. - * objc: ObjC testsuite. - -1998-08-31 Catherine Moore <clm@cygnus.com> - - * gcc.c-torture/execute/941014-1.x: New file. - -1998-08-31 Nick Clifton <nickc@cygnus.com> - - * lib/c-torture.exp: Add support for - torture_eval_before_compile and torture_eval_before_execute - variables. - -1998-08-30 Jeffrey A Law (law@cygnus.com) - - * gcc.dg/980626-1.c: Delete this test. We've declared the warning - this test triggers valid. - -1998-08-27 Jeffrey A Law (law@cygnus.com) - - * gcc.dg/980827-1.c: New test. - -1997-08-26 J"orn Rennecke <amylaar@cygnus.co.uk> - - * gcc.c-torture/execute/loop-4b.c: New test. - -1998-08-26 Nick Clifton <nickc@cygnus.com> - - * lib/c-torture.exp: Add support for - torture_eval_before_compile and torture_eval_before_execute - variables. - -1998-08-25 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/980825-1.c: New test. - -1998-08-24 Nick Clifton <nickc@cygnus.com> - - * gcc.c-torture/execute/bcp-1.c (main): Fix optimize test loop to - count number tests in opt_t0 not good_t0. - -1998-08-24 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/930326-1.x: Fix typo. - -1998-08-23 Mark Mitchell <mark@markmitchell.com> - - * lib/old-dejagnu.exp: Make it possible to XFAIL a test that - causes an ICE. - -1998-08-21 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/unsorted/memtst.c: Reduce size of array when - STACK_SIZE is defined. - * gcc.c-torture/unsorted/stuct.c: Similarly. - - * gcc.c-torture/compile/980821-1.c: New test. - -1998-08-21 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/execute/980526-2.c: Disable for targets with 16bit ints. - -1998-08-19 Mark Mitchell <mark@markmitchell.com> - - * lib/old-dejagnu.exp (old-dejagnu): Remove sig6/sig11 handling - code. - -1998-08-09 Mark Mitchell <mark@markmitchell.com> - - * lib/old-dejagnu.exp: Revise handling of `Internal compiler - error'. - -1998-08-18 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/execute/*.x: Some updates for the h8300 targets. - -1998-08-16 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/980816-1.c: New test. - - * gcc.dg/980816-1.c: New test. - -1998-08-13 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/execute/ieee/ieee.exp: Pass -ffloat-store to - compiler for ieee tests. - -1998-08-01 Dave Love <d.love@dl.ac.uk> - - * g77.f-torture/compile/980729-0.f: New test. - -1998-07-30 Ken Raeburn <raeburn@cygnus.com> - - * gcc.c-torture/special/eeprof-1.c: New test, for - -finstrument-functions. - * gcc.c-torture/special/special.exp: Run it. - -1998-07-29 Jeffrey A Law (law@cygnus.com) - - * gcc.c-torture/compile/980729-1.c: New test. - -1998-07-27 Nick Clifton <nickc@cygnus.com> - - * gcc.c-torture/execute/ieee/930529-1.c (main): Check to see if - __thumb__ is defined, and test for ARM style doubles if so. - -1998-07-26 Dave Love <d.love@dl.ac.uk> +1998-11-07 Gerald Pfe * g77.f-torture/noncompile/980615-0.f: New test. @@ -22442,250 +16834,7 @@ rlsruhe.de> 1993-12-30 Mike Stump (mrs@rtl.cygnus.com) - * lib/old-deja.exp: Add `excess errors test fails' error, now one - can put an XFAIL *-*-* on excess errors. - -1993-12-19 Jeffrey A. Law (law@snake.cs.utah.edu - - * g++.law: Add more tests derived from g++-bugs snapshots. - - * g++.law/init11.{c,exp}: Delete test. Brendan sez it's - equivalent to g++.law/init9. - - * lib/mike-gcc.exp (postbase): Delete the .o file after we've - compiled it, and the a.out file after we've run it. - -1993-12-17 Brendan Kehoe (brendan@lisa.cygnus.com) - - * lib/mike-g++.exp (postbase): Delete the .o file after we've - compiled it, and the a.out file after we've run it. - -1993-12-17 Jeffrey A. Law (law@snake.cs.utah.edu) - - * g++.law/*.exp: Avoid losing arguments added via "append" commands. - -1993-12-15 Rob Savoye (rob@darkstar.cygnus.com) - - * lib/gcc.exp, lib/g++.exp: Use catch rather than exec to get the - version number. - -1993-12-12 Jeffrey A. Law (law@snake.cs.utah.edu) - - * g++.law: New directory of g++ tests derived from the g++-bugs - snapshots. - -1993-12-09 Jeffrey Wheat (cassidy@cygnus.com) - - * gcc.compile: initbug1.c initbug1.exp testcase added - -1993-12-06 Jeffrey Wheat (cassidy@cygnus.com) - - * gcc.dje/sizetype-1.exp, dje.exp: minor clean ups - * gcc.execute/execute.exp: minor cleanups. added gcc_stat calls. added - fixes submitted by Jeff Law (law@cs.utah.edu) - * gcc.noncompile/noncompile.exp, lib/mike-gcc.exp: new files from - Jeff Law (law@cs.utah.edu) - - -1993-11-30 Mike Stump (mrs@cygnus.com) - - * config/unix-g++.exp: Follow the gcc way of doing things. - * g++.old-deja/old-deja.exp: Minor updates. - * lib/g++.exp: New file, follow the gcc way of doing things. - * lib/old-dejagnu.exp: Minor updates. - * lib/mike-g++.exp: Always unset errorInfo. - -1993-11-06 Mike Stump (mrs@cygnus.com) - - * lib/gcc.exp: Fix some errors with the below change, CC and - CFLAGS should be global when setting, not local. - -1993-11-03 Rob Savoye (rob@darkstar.cygnus.com) - - * lib/gcc.exp: Transform tool name. - -1993-10-27 Jeffrey Wheat (cassidy@cygnus.com) - - * gcc.*/*.exp: Fixd some de-stablizing changes. Sorry. - -1993-10-27 Jeffrey Wheat (cassidy@cygnus.com) - - * lib/gcc.exp: change gcc_done to gcc_stat - -1993-10-27 Jeffrey Wheat (cassidy@cygnus.com) - - * Upgraded gcc testsuite to c-torture version 1.25 - -1993-10-24 Jeffrey Wheat (cassidy@cygnus.com) - - * lib/gcc.exp: added reporting code. Changed verbose compile message. - * lib/c-torture: added hooks for new reporting code. - -1993-10-21 Jeffrey Wheat (cassidy@cygnus.com) - - * config/sh-gcc.exp: check if sh-sim exists in the path - -1993-10-18 Jeffrey Wheat (cassidy@cygnus.com) - - * gcc.code_quality/code_quality.exp: Initial changes for new logic. - * gcc.compile/compile.exp: Initial changes for new logic. - * gcc.dje/dje.exp, sizetype-1.exp: Initial changes for new logic. - * gcc.failure/failure.exp: Initial changes for new logic. - * gcc.ieee/ieee.exp: Initial changes for new logic. - * gcc.misc-tests/misc.exp: Initial changes for new logic. - * gcc.noncompile/non_compile.exp: Initial changes for new logic. - * gcc.unsorted/unsorted.exp: Initial changes for new logic. - * lib/c-torture.exp: Initial changes for new logic. - * lib/gcc.exp: Initial changes for new logic. - -1993-10-15 Mike Stump (mrs@cygnus.com) - - * lib/mike-g++.exp, lib/old-dejagnu.exp: Make the message not - depend upon failure or success. Fully qualify names in failure - and success messages. Always remove a.out before starting - compile, just in case. Pay more attention to error text output by - the compiler. Handle testcases with no known past errors just - like all others, so that things are uniform. Other miscellaneous - improvements. - -1993-10-13 Jeffrey Wheat (cassidy@cygnus.com) - - * gcc.cpp: new directory for cpp tests - -1993-10-04 Jeffrey Wheat (cassidy@cygnus.com) - - * lib/chill.exp: Code reformatted, removed unused code. - * config/unix-chill.exp: Code reformatted, removed unused code. - * chill.execute/execute.exp: Code reformatted, removed unused code. - * chill.execute/oe/orient.exp: Code reformatted, removed unused code. - -1993-10-04 Ian Lance Taylor (ian@cygnus.com) - - * config/mips-gcc.exp, config/mips-g++.exp: New files. Execution - routines not written. - -1993-09-27 Rob Savoye (rob@darkstar.cygnus.com) - - * config/bug-gcc.exp: Use new procs from bug.exp. - -1993-09-21 Rob Savoye (rob@darkstar.cygnus.com) - - * config/vx-gcc.exp: Use new vxworks_ld proc, so files get loaded - via ftp, rather than depending on NFS. - * config/vx-gcc.exp: Use new vxworks_spawn proc to execute test - case. - -1993-09-09 Rob Savoye (rob@darkstar.cygnus.com) - - * config/bug-gcc.exp: Use new download proc. - -1993-09-14 Jeffrey Wheat (cassidy at deneb.cygnus.com) - - * chill.execute/execute.exp: cleanups, handles errors better - * chill.compile/compile.exp: rewrite, based on execute.exp - * chill.noncompile/noncompile.exp: rewrite, based on execute.exp - * lib/chill.exp: major changes to diff proc and compile and link - procs. added chill_fail and chill_pass wrappers to pass and - fail. added more comments, and handle error codes better. - Added a hack to capture stderr from exec, so noncompile tests - can work. - -1993-09-11 Jeffrey Wheat (cassidy@cygnus.com) - - * chill.execute/execute.exp: rewrite of testsuite driver - * lib/chill.exp: rewrite of testsuite driver - * config/unix-chill.exp: rewrite of testsuite driver - -1993-08-25 Bill Cox (bill@rtl.cygnus.com) - - In chill.execute: - * iexpr.ch: Standardize uppercase. - * tuples.dat: Standardize uppercase. - * vary.ch: standardize. Correct varying string assignments. - * vary.dat: Add new output lines. - -1993-08-24 Bill Cox (bill@rtl.cygnus.com) - - In chill.execute: - * chprintf.ch: Standardize use of uppercase. - * tuples.ch: Standardize and turn arr2 into a DCL, - rather than a SYN. - * pinits.ch: Standardize. - -1993-08-23 Per Bothner (bothner@kalessin.cygnus.com) - - * rts.c: Get malloc() from <stdlib.h>, not <malloc.h>. - * Makefil: Renamed to Makefile.in. - * configure.in: New. - -1993-08-23 Bill Cox (bill@rtl.cygnus.com) - - In chill.execute: - * .cvsignore: Add result/output files. - * Makefile: Fix up variables at start. Use MFLAGS - everywhere. Correct bool_loc, built_ins entries. - Add entry for vary1.ch. - * bitarray.ch: Standardize upper-case usage. - * bitexpr.ch: Standardize, add output of b1. - * params.ch: Use arrayt in along PROC parameters, to - avoid novelty problems. - * sets.ch: Tiny cleanup. - * vary1.ch: Re-indent. - -1993-08-17 Bill Cox (bill@rtl.cygnus.com) - - * Add PR-related files to Makefiles, .cvsignore files, etc. - -1993-08-02 Jeff Wheat (cassidy@cygnus.com) - - * gcc.unsorted: flow.c and loop.c - renamed to avoid conflicts - with compiler objects. New names are test-flow.c and test-loop.c - -1993-07-27 Jeff Wheat (cassidy@cygnus.com) - - * Upgraded c-torture tests from 1.19 to 1.20 - - * new files: - * gcc.compile: 930609-1.c 930611-1.c 930618-1.c 930621-1.c - * gcc.compile: 930623-1.c 930623-2.c - * gcc.noncompile: 930622-1.c 930622-2.c - * gcc.failure: 920411-1.c 920627-2.c - * gcc.ieee: 920518-1.c 920810-1.c 930529-1.c - -1993-07-20 Jeff Wheat (cassidy@cygnus.com) - - * chill.compile/compile.exp chill.execute/execute.exp lib/chill.exp - More changes to get testsuite working properly. Needs more work. - Added some support for POSIX IEEE Std 1003.3-1991 error messages. - -1993-07-19 Jeff Wheat (cassidy@cygnus.com) - - * chill.compile/compile.exp chill.execute/execute.exp lib/chill.exp - More changes to get testsuite working properly. Needs more work. - -1993-07-13 Jeff Wheat (cassidy@cygnus.com) - - * chill.compile/compile.exp: Added for Dejagnu support - * chill.execute/execute.exp: Added for Dejagnu support - * lib/chill.exp config/unix-chill.exp : Added for Dejagnu support - -1993-06-19 Bill Cox (bill@rtl.cygnus.com) - - This should complete moving the CHILL test files. - * chill.noncompile(.cvsignore printf.grt - in-printf.grt chprintf.grt chprintf.ch): - Added test-support files. - (Makefile): Modified further. - * chill.compile (emptymod.ch gdbme.ch neg_range.ch - signal.ch): Added test files. - * chill.execute (.cvsignore printf.grt printr.c - in-printf.grt rts.c chprintf.grt rts.h): Added - test-support files. - (Makefile): More corrections. - -1993-06-18 Bill Cox (bill@rtl.cygnus.com) - - * chill.compile, chill.execute, chill.nocompile: Add CHILL + * lib/old-deja test cases, ready for DejaGnu. 1993-06-17 Jeffrey Wheat (cassidy@cygnus.com) diff --git a/gcc/testsuite/gfortran.fortran-torture/execute/nullarg.f90 b/gcc/testsuite/gfortran.fortran-torture/execute/nullarg.f90 new file mode 100644 index 0000000..67e65f8 --- /dev/null +++ b/gcc/testsuite/gfortran.fortran-torture/execute/nullarg.f90 @@ -0,0 +1,13 @@ +! This is the testcase from PR 12841. We used to report a type/rank mismatch +! when passing NULL() as an argument to a function. + MODULE T + PUBLIC :: A + CONTAINS + SUBROUTINE A(B) + REAL, POINTER :: B + IF (ASSOCIATED(B)) CALL ABORT() + END SUBROUTINE A + END MODULE T + USE T + CALL A(NULL()) + END |