aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorUros Bizjak <uros@gcc.gnu.org>2009-09-24 15:21:05 +0200
committerUros Bizjak <uros@gcc.gnu.org>2009-09-24 15:21:05 +0200
commit6356f38faf789f0095575a9258f8d459917f7363 (patch)
treeec18dff453d824ae241da7d45c60f00a5a44e5c1 /gcc
parent22a3138fa54b122b560edd5ff1cfbc7c1f443361 (diff)
downloadgcc-6356f38faf789f0095575a9258f8d459917f7363.zip
gcc-6356f38faf789f0095575a9258f8d459917f7363.tar.gz
gcc-6356f38faf789f0095575a9258f8d459917f7363.tar.bz2
ChangeLog: Move wrong entries to correct place.
* ChangeLog: Move wrong entries to correct place. * cp/ChangeLog: Ditto. * testsuite/ChangeLog: Ditto. Remove "testsuite" from file names. From-SVN: r152120
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog17
-rw-r--r--gcc/cp/ChangeLog6
-rw-r--r--gcc/testsuite/ChangeLog102
3 files changed, 72 insertions, 53 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 59e51e5..f2d49b6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -221,10 +221,6 @@
* reload1.c (reload): Reset debug insns with pseudos without
equivalences.
-2009-09-22 Neil Vachharajani <nvachhar@google.com>
-
- * testsuite/gcc.dg/pr40209.c: Add test case.
-
2009-09-22 Janis Johnson <janis187@us.ibm.com>
* config/i386/i386.c (ix86_scalar_mode_supported_p): Don't return
@@ -843,7 +839,6 @@
INTERESTING_STRINGOP_TO_PROFILE_P to find size argument.
* value-prof.c (gimple_stringops_transform): Update call sites to
INTERESTING_STRINGOP_TO_PROFILE_P to reflect parameter change.
- * testsuite/gcc.dg/tree-prof/val-prof-7.c: Added test case.
2009-09-18 Uros Bizjak <ubizjak@gmail.com>
@@ -5572,12 +5567,6 @@
(graphite_carried_dependence_level_k): Free unused objects before
returning.
- * testsuite/gcc.dg/graphite/interchange-1.c: XFAILed.
- * testsuite/gcc.dg/graphite/interchange-2.c: XFAILed.
- * testsuite/gcc.dg/graphite/interchange-3.c: XFAILed.
- * testsuite/gcc.dg/graphite/interchange-4.c: XFAILed.
- * testsuite/gcc.dg/graphite/interchange-7.c: XFAILed.
-
2009-08-12 Sebastian Pop <sebastian.pop@amd.com>
* graphite-blocking.c (scop_do_strip_mine): Call store_scattering.
@@ -12231,8 +12220,6 @@
* config/m68k/linux.h (HAVE_GAS_BALIGN_AND_P2ALIGN): Move to ...
* config/m68k/m68k.h: ... here.
- * testsuite/gcc.dg/falign-labels.c (dg-options): Don't restrict for
- m68k and fido.
2009-06-03 Martin Jambor <mjambor@suse.cz>
@@ -20886,8 +20873,6 @@
PR target/39501
* arm.md (movsfcc): Disable if not TARGET_HARD_FLOAT.
- * testsuite/gcc.c-torture/execute/pr39501.c: New file.
- * testsuite/gcc.c-torture/execute/pr39501.x: New file.
2009-04-04 Richard Guenther <rguenther@suse.de>
@@ -24947,7 +24932,6 @@
(struct scop): Remove bbs_b bitmap and loop2cloog_loop.
(loop_domain_dim, loop_iteration_vector_dim): Remove.
(SCOP_BBS_B, bb_in_scop_p, loop_in_scop_p): Removed.
- * testsuite/gcc.dg/graphite/scop-19.c: New
2009-02-04 Paolo Bonzini <bonzini@gnu.org>
Hans-Peter Nilsson <hp@axis.com>
@@ -25984,7 +25968,6 @@
PR middlend/38385
* tree-loop-distribution.c (prop_phis): New function.
(generate_builtin): Call prop_phis.
- * testsuite/gcc.dg/tree-ssa/pr38385.c: New file.
2009-01-12 Jakub Jelinek <jakub@redhat.com>
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 4c6e0c7..5949b24 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -59,8 +59,10 @@
2009-09-17 Andrew Pinski <pinskia@gcc.gnu.org>
PR c++/39365
- * g++.dg/expr/bool3.C: New test.
- * g++.dg/expr/bool4.C: New test.
+ * typeck.c (cp_build_unary_op): Check TREE_CODE for bools instead of
+ using same_type_p.
+ (convert_for_assignment): Likewise.
+ * cvt.c (type_promotes_to): Likewise.
2009-09-14 Richard Henderson <rth@redhat.com>
Jakub Jelinek <jakub@redhat.com>
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index fbce64f..5b6eee2 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -4,14 +4,14 @@
2009-09-24 Jakub Jelinek <jakub@redhat.com>
- * testsuite/gcc.target/i386/pr12329.c: Adjust.
+ * gcc.target/i386/pr12329.c: Adjust.
2009-09-23 Alexandre Oliva <aoliva@redhat.com>
PR debug/41248
* gcc.dg/pr41248.c: New.
- 2009-09-23 Dodji Seketeli <dodji@redhat.com>
+2009-09-23 Dodji Seketeli <dodji@redhat.com>
PR debug/41065
* gcc.dg/debug/dwarf2/global-used-types.c: New test.
@@ -41,6 +41,10 @@
PR debug/41295
* gcc.dg/pr41295.c: New.
+2009-09-22 Neil Vachharajani <nvachhar@google.com>
+
+ * gcc.dg/pr40209.c: Add test case.
+
2009-09-22 Adam Nemet <anemet@caviumnetworks.com>
* gcc.target/mips/code-readable-1.c: Change \. to \\. when
@@ -170,9 +174,12 @@
2009-09-18 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/nolinkage1{.C,.h,a.cc}: New.
-
* g++.dg/cpp0x/initlist-deduce.C: New.
+2009-09-18 Neil Vachharajani <nvachhar@google.com>
+
+ * gcc.dg/tree-prof/val-prof-7.c: Added test case.
+
2009-09-18 Janis Johnson <janis187@us.ibm.com>
* gcc.dg/dfp/dfp.exp: Also run tests in c-c++-common/dfp.
@@ -352,28 +359,26 @@
2009-09-17 Andrew Pinski <pinskia@gcc.gnu.org>
PR c++/39365
- * typeck.c (cp_build_unary_op): Check TREE_CODE for bools instead of
- using same_type_p.
- (convert_for_assignment): Likewise.
- * cvt.c (type_promotes_to): Likewise.
+ * g++.dg/expr/bool3.C: New test.
+ * g++.dg/expr/bool4.C: New test.
2009-09-17 Janis Johnson <janis187@us.ibm.com>
- * gcc/testsuite/gcc.dg/dfp/dfp-dbg.h: Define EXTERN.
- * gcc/testsuite/gcc.dg/dfp/signbit-2.c: Use it.
- * gcc/testsuite/gcc.dg/dfp/func-vararg-alternate.h: Change two
+ * gcc.dg/dfp/dfp-dbg.h: Define EXTERN.
+ * gcc.dg/dfp/signbit-2.c: Use it.
+ * gcc.dg/dfp/func-vararg-alternate.h: Change two
arguments to unsigned int.
- * gcc/testsuite/gcc.dg/dfp/convert-bfp-10.c: Don't include float.h.
- * gcc/testsuite/gcc.dg/dfp/convert-bfp-fold.c: Include dfp-dbg.h.
- * gcc/testsuite/gcc.dg/dfp/convert-dfp-fold.c: Ditto
- * gcc/testsuite/gcc.dg/dfp/convert-int-max-fold.c: Ditto.
- * gcc/testsuite/gcc.dg/dfp/operator-arith-fold.c: Ditto.
- * gcc/testsuite/gcc.dg/dfp/pr39986.c: Ditto.
- * gcc/testsuite/gcc.dg/dfp/usual-arith-conv-const.c: Ditto.
- * gcc/testsuite/gcc.dg/dfp/pr31385.c: Use mode in typedef, not C type.
- * gcc/testsuite/gcc.dg/dfp/pr35620.c: Define typedef for C++.
- * gcc/testsuite/gcc.dg/dfp/convert-int.c: Define BOOL for C++.
- * gcc/testsuite/gcc.dg/dfp/convert-int-fold.c: Ditto.
+ * gcc.dg/dfp/convert-bfp-10.c: Don't include float.h.
+ * gcc.dg/dfp/convert-bfp-fold.c: Include dfp-dbg.h.
+ * gcc.dg/dfp/convert-dfp-fold.c: Ditto
+ * gcc.dg/dfp/convert-int-max-fold.c: Ditto.
+ * gcc.dg/dfp/operator-arith-fold.c: Ditto.
+ * gcc.dg/dfp/pr39986.c: Ditto.
+ * gcc.dg/dfp/usual-arith-conv-const.c: Ditto.
+ * gcc.dg/dfp/pr31385.c: Use mode in typedef, not C type.
+ * gcc.dg/dfp/pr35620.c: Define typedef for C++.
+ * gcc.dg/dfp/convert-int.c: Define BOOL for C++.
+ * gcc.dg/dfp/convert-int-fold.c: Ditto.
2009-09-17 Jakub Jelinek <jakub@redhat.com>
@@ -847,20 +852,20 @@
2009-09-03 Alon Dayan <alond@il.ibm.com>
PR tree-optimization/38275
- * testsuite/gcc.dg/autopar/reduc-1char.c: Increase number
+ * gcc.dg/autopar/reduc-1char.c: Increase number
of iterations. Adjust the logic accordingly.
- * testsuite/gcc.dg/autopar/reduc-2char.c: Ditto.
- * testsuite/gcc.dg/autopar/reduc-1.c: Ditto.
- * testsuite/gcc.dg/autopar/reduc-2.c: Ditto.
- * testsuite/gcc.dg/autopar/reduc-3.c: Ditto.
- * testsuite/gcc.dg/autopar/reduc-6.c: Ditto.
- * testsuite/gcc.dg/autopar/reduc-7.c: Ditto.
- * testsuite/gcc.dg/autopar/reduc-8.c: Ditto.
- * testsuite/gcc.dg/autopar/reduc-9.c: Ditto.
- * testsuite/gcc.dg/autopar/pr39500-1.c: Ditto.
- * testsuite/gcc.dg/autopar/reduc-1short.c: Ditto.
- * testsuite/gcc.dg/autopar/reduc-2short.c: Ditto.
- * testsuite/gcc.dg/autopar/parallelization-1.c: Ditto.
+ * gcc.dg/autopar/reduc-2char.c: Ditto.
+ * gcc.dg/autopar/reduc-1.c: Ditto.
+ * gcc.dg/autopar/reduc-2.c: Ditto.
+ * gcc.dg/autopar/reduc-3.c: Ditto.
+ * gcc.dg/autopar/reduc-6.c: Ditto.
+ * gcc.dg/autopar/reduc-7.c: Ditto.
+ * gcc.dg/autopar/reduc-8.c: Ditto.
+ * gcc.dg/autopar/reduc-9.c: Ditto.
+ * gcc.dg/autopar/pr39500-1.c: Ditto.
+ * gcc.dg/autopar/reduc-1short.c: Ditto.
+ * gcc.dg/autopar/reduc-2short.c: Ditto.
+ * gcc.dg/autopar/parallelization-1.c: Ditto.
2009-09-03 Jakub Jelinek <jakub@redhat.com>
@@ -1487,6 +1492,15 @@
PR middle-end/40980
* gfortran.dg/graphite/id-17.f: New.
+2009-08-12 Konrad Trifunovic <konrad.trifunovic@gmail.com>
+ Sebastian Pop <sebastian.pop@amd.com>
+
+ * gcc.dg/graphite/interchange-1.c: XFAILed.
+ * gcc.dg/graphite/interchange-2.c: XFAILed.
+ * gcc.dg/graphite/interchange-3.c: XFAILed.
+ * gcc.dg/graphite/interchange-4.c: XFAILed.
+ * gcc.dg/graphite/interchange-7.c: XFAILed.
+
2009-08-12 Sebastian Pop <sebastian.pop@amd.com>
* gcc.dg/graphite/interchange-6.c: Un-XFAIL.
@@ -3980,6 +3994,11 @@
PR middle-end/40328
* gcc.dg/torture/pr40328.c: New testcase.
+2009-06-03 Maxim Kuvyrkov <maxim@codesourcery.com>
+
+ * gcc.dg/falign-labels.c (dg-options): Don't restrict for
+ m68k and fido.
+
2009-06-03 Martin Jambor <mjambor@suse.cz>
* g++.dg/torture/pr40323.C: New file.
@@ -6439,6 +6458,12 @@
PR fortran/37614
* gfortran.dg/common_align_2.f90: New test.
+2009-04-04 Richard Earnshaw <rearnsha@arm.com>
+
+ PR target/39501
+ * gcc.c-torture/execute/pr39501.c: New file.
+ * gcc.c-torture/execute/pr39501.x: New file.
+
2009-04-04 Richard Guenther <rguenther@suse.de>
PR tree-optimization/8781
@@ -8024,6 +8049,10 @@
PR c/35435
* gcc.dg/tls/diag-6.c: New test.
+2009-02-04 Tobias Grosser <grosser@fim.uni-passau.de>
+
+ * gcc.dg/graphite/scop-19.c: New
+
2009-02-04 H.J. Lu <hongjiu.lu@intel.com>
AVX Programming Reference (January, 2009)
@@ -8746,6 +8775,11 @@
* gnat.dg/unchecked_convert3.adb: New test.
+2009-01-12 Tomas Bily <tbily@suse.cz>
+
+ PR middlend/38385
+ * gcc.dg/tree-ssa/pr38385.c: New file.
+
2009-01-12 Jakub Jelinek <jakub@redhat.com>
PR c++/38794