aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2017-02-15 15:43:42 +0100
committerThomas Schwinge <tschwinge@gcc.gnu.org>2017-02-15 15:43:42 +0100
commit93b87d1ddf1e6a94e893a2da550791e43ef4919a (patch)
tree395b5d48fecbbcbe2a757ca8274d524532535f74 /gcc
parentfa8db6eaf2d95fc77b96c5eeb36813175dd9ab97 (diff)
downloadgcc-93b87d1ddf1e6a94e893a2da550791e43ef4919a.zip
gcc-93b87d1ddf1e6a94e893a2da550791e43ef4919a.tar.gz
gcc-93b87d1ddf1e6a94e893a2da550791e43ef4919a.tar.bz2
Restore Graphite fuse-*.c testing
* Makefile.tpl: Remove HOST_ISLVER. (HOST_EXPORTS): Remove ISLVER. * Makefile.in: Regenerate. gcc/ * Makefile.in (site.exp): Remove "set ISLVER". gcc/testsuite/ * gcc.dg/graphite/graphite.exp: Merge "fuse_files" into "opt_files". From-SVN: r245483
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/Makefile.in1
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.dg/graphite/graphite.exp8
4 files changed, 10 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7466dab..fa0b01c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2017-02-15 Thomas Schwinge <thomas@codesourcery.com>
+
+ * Makefile.in (site.exp): Remove "set ISLVER".
+
2017-02-15 Jakub Jelinek <jakub@redhat.com>
PR target/79487
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 821584a..0cde1ae 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -3805,7 +3805,6 @@ site.exp: ./config.status Makefile
echo "set PLUGINCFLAGS \"$(PLUGINCFLAGS)\"" >> ./site.tmp; \
echo "set GMPINC \"$(GMPINC)\"" >> ./site.tmp; \
fi
- @echo "set ISLVER \"$(ISLVER)\"" >> ./site.tmp
# If newlib has been configured, we need to pass -B to gcc so it can find
# newlib's crt0.o if it exists. This will cause a "path prefix not used"
# message if it doesn't, but the testsuite is supposed to ignore the message -
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index a379d2a..2097fc9 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2017-02-15 Thomas Schwinge <thomas@codesourcery.com>
+
+ * gcc.dg/graphite/graphite.exp: Merge "fuse_files" into
+ "opt_files".
+
2017-02-15 Jakub Jelinek <jakub@redhat.com>
PR target/79487
diff --git a/gcc/testsuite/gcc.dg/graphite/graphite.exp b/gcc/testsuite/gcc.dg/graphite/graphite.exp
index 2499431..50aae30 100644
--- a/gcc/testsuite/gcc.dg/graphite/graphite.exp
+++ b/gcc/testsuite/gcc.dg/graphite/graphite.exp
@@ -49,10 +49,10 @@ set run_id_files [lsort [glob -nocomplain $srcdir/$subdir/run-id-*.c ] ]
set opt_files [lsort [glob -nocomplain $srcdir/$subdir/interchange-*.c \
$srcdir/$subdir/uns-interchange-*.c \
$srcdir/$subdir/isl-ast-gen-*.c \
+ $srcdir/$subdir/fuse-*.c \
$srcdir/$subdir/block-*.c \
$srcdir/$subdir/uns-block-*.c ] ]
set vect_files [lsort [glob -nocomplain $srcdir/$subdir/vect-*.c ] ]
-set fuse_files [lsort [glob -nocomplain $srcdir/$subdir/fuse-*.c ] ]
# Tests to be compiled.
set dg-do-what-default compile
@@ -64,11 +64,6 @@ set dg-do-what-default run
dg-runtest $run_id_files "" "-O2 -fgraphite-identity"
dg-runtest $opt_files "" "-O2 -ffast-math -floop-nest-optimize -fdump-tree-graphite-all"
-global ISLVER
-if { $ISLVER == "0.15" } {
- dg-runtest $fuse_files "" "-O2 -ffast-math -floop-nest-optimize -fdump-tree-graphite-all"
-}
-
# Vectorizer tests, to be run or compiled, depending on target capabilities.
global DEFAULT_VECTCFLAGS
set DEFAULT_VECTCFLAGS "-O2 -fgraphite-identity -ftree-vectorize -fno-vect-cost-model -fdump-tree-vect-details -ffast-math"
@@ -84,7 +79,6 @@ foreach f $id_files {lremove wait_to_run_files $f}
foreach f $run_id_files {lremove wait_to_run_files $f}
foreach f $opt_files {lremove wait_to_run_files $f}
foreach f $vect_files {lremove wait_to_run_files $f}
-foreach f $fuse_files {lremove wait_to_run_files $f}
dg-runtest $wait_to_run_files "" "-ansi -pedantic-errors"
# Clean up.