]> gcc.gnu.org Git - gcc.git/commitdiff
graphite.exp (DEFAULT_CFLAGS_GRAPHITE_BLOCK): Renamed DEFAULT_FLAGS_GRAPHITE_BLOCK.
authorSebastian Pop <sebastian.pop@amd.com>
Wed, 25 Nov 2009 05:05:53 +0000 (05:05 +0000)
committerSebastian Pop <spop@gcc.gnu.org>
Wed, 25 Nov 2009 05:05:53 +0000 (05:05 +0000)
2009-10-14  Sebastian Pop  <sebastian.pop@amd.com>

* gcc.dg/graphite/graphite.exp (DEFAULT_CFLAGS_GRAPHITE_BLOCK):
Renamed DEFAULT_FLAGS_GRAPHITE_BLOCK.
(DEFAULT_CFLAGS_GRAPHITE_IDENTITY): Renamed
DEFAULT_FLAGS_GRAPHITE_IDENTITY.
(DEFAULT_CFLAGS_GRAPHITE_INTERCHANGE): Renamed
DEFAULT_FLAGS_GRAPHITE_INTERCHANGE.
(DEFAULT_CFLAGS_GRAPHITE_SCOP): Renamed
DEFAULT_FLAGS_GRAPHITE_SCOP.
(DEFAULT_CFLAGS_RUN_ID): Renamed DEFAULT_FLAGS_RUN_ID.
(DEFAULT_CFLAGS_GRAPHITE): Renamed DEFAULT_FLAGS_GRAPHITE.

From-SVN: r154585

gcc/ChangeLog.graphite
gcc/testsuite/gcc.dg/graphite/graphite.exp

index 0f0565675ab1c3c641cd28433f2d3802a5d4a168..4e3178d47668e0d70082c368aaebdd8124373141 100644 (file)
@@ -1,3 +1,16 @@
+2009-10-14  Sebastian Pop  <sebastian.pop@amd.com>
+
+       * gcc.dg/graphite/graphite.exp (DEFAULT_CFLAGS_GRAPHITE_BLOCK):
+       Renamed DEFAULT_FLAGS_GRAPHITE_BLOCK.
+       (DEFAULT_CFLAGS_GRAPHITE_IDENTITY): Renamed
+       DEFAULT_FLAGS_GRAPHITE_IDENTITY.
+       (DEFAULT_CFLAGS_GRAPHITE_INTERCHANGE): Renamed
+       DEFAULT_FLAGS_GRAPHITE_INTERCHANGE.
+       (DEFAULT_CFLAGS_GRAPHITE_SCOP): Renamed
+       DEFAULT_FLAGS_GRAPHITE_SCOP.
+       (DEFAULT_CFLAGS_RUN_ID): Renamed DEFAULT_FLAGS_RUN_ID.
+       (DEFAULT_CFLAGS_GRAPHITE): Renamed DEFAULT_FLAGS_GRAPHITE.
+
 2009-10-14  Sebastian Pop  <sebastian.pop@amd.com>
 
        * graphite-poly.c (pbb_number_of_iterations_at_time): Cleanup comments.
index 1267cf25382d1ad2b0bbd4ea96fd7c27ff442321..9ca200ea8f8381b56aae63257494d4d7943eb497 100644 (file)
@@ -43,27 +43,27 @@ dg-init
 set wait_to_run_files [lsort [glob -nocomplain $srcdir/$subdir/*.c ] ]
 
 # Flags using for block-* files.
-set DEFAULT_CFLAGS_GRAPHITE_BLOCK "-O2 -floop-block -fdump-tree-graphite-all"
+set DEFAULT_FLAGS_GRAPHITE_BLOCK "-O2 -floop-block -fdump-tree-graphite-all"
 set block_files [lsort [glob -nocomplain $srcdir/$subdir/block-*.c ] ]
-dg-runtest $block_files "" $DEFAULT_CFLAGS_GRAPHITE_BLOCK
+dg-runtest $block_files "" $DEFAULT_FLAGS_GRAPHITE_BLOCK
 foreach block_file $block_files {lremove wait_to_run_files $block_file}
 
 # Flags using for id-* files.
-set DEFAULT_CFLAGS_GRAPHITE_IDENTITY "-O2 -fgraphite-identity"
+set DEFAULT_FLAGS_GRAPHITE_IDENTITY "-O2 -fgraphite-identity"
 set id_files [lsort [glob -nocomplain $srcdir/$subdir/id-*.c ] ]
-dg-runtest $id_files "" $DEFAULT_CFLAGS_GRAPHITE_IDENTITY
+dg-runtest $id_files "" $DEFAULT_FLAGS_GRAPHITE_IDENTITY
 foreach id_file $id_files {lremove wait_to_run_files $id_file}
 
 # Flags using for interchange-* files.
-set DEFAULT_CFLAGS_GRAPHITE_INTERCHANGE "-O2 -fdump-tree-graphite-all -floop-interchange -ffast-math"
+set DEFAULT_FLAGS_GRAPHITE_INTERCHANGE "-O2 -fdump-tree-graphite-all -floop-interchange -ffast-math"
 set interchange_files [lsort [glob -nocomplain $srcdir/$subdir/interchange-*.c ] ]
-dg-runtest $interchange_files "" $DEFAULT_CFLAGS_GRAPHITE_INTERCHANGE
+dg-runtest $interchange_files "" $DEFAULT_FLAGS_GRAPHITE_INTERCHANGE
 foreach interchange_file $interchange_files {lremove wait_to_run_files $interchange_file}
 
 # Flags using for scop-* files.
-set DEFAULT_CFLAGS_GRAPHITE_SCOP "-O2 -fgraphite -fdump-tree-graphite-all"
+set DEFAULT_FLAGS_GRAPHITE_SCOP "-O2 -fgraphite -fdump-tree-graphite-all"
 set scop_files [lsort [glob -nocomplain $srcdir/$subdir/scop-*.c ] ]
-dg-runtest $scop_files "" $DEFAULT_CFLAGS_GRAPHITE_SCOP
+dg-runtest $scop_files "" $DEFAULT_FLAGS_GRAPHITE_SCOP
 foreach scop_file $scop_files {lremove wait_to_run_files $scop_file}
 
 
@@ -71,9 +71,9 @@ foreach scop_file $scop_files {lremove wait_to_run_files $scop_file}
 set dg-do-what-default run
 
 # Flags using for run-id-* files.
-set DEFAULT_CFLAGS_RUN_ID "-O2 -fgraphite-identity"
+set DEFAULT_FLAGS_RUN_ID "-O2 -fgraphite-identity"
 set run_id_files [lsort [glob -nocomplain $srcdir/$subdir/run-id-*.c ] ]
-dg-runtest $run_id_files "" $DEFAULT_CFLAGS_RUN_ID
+dg-runtest $run_id_files "" $DEFAULT_FLAGS_RUN_ID
 foreach run_id_file $run_id_files {lremove wait_to_run_files $run_id_file}
 
 
@@ -81,8 +81,8 @@ foreach run_id_file $run_id_files {lremove wait_to_run_files $run_id_file}
 set dg-do-what-default compile
 
 # Flags using for other files.
-set DEFAULT_CFLAGS_GRAPHITE "-ansi -pedantic-errors"
-dg-runtest $wait_to_run_files "" $DEFAULT_CFLAGS_GRAPHITE
+set DEFAULT_FLAGS_GRAPHITE "-ansi -pedantic-errors"
+dg-runtest $wait_to_run_files "" $DEFAULT_FLAGS_GRAPHITE
 
 # Clean up.
 set dg-do-what-default ${save-dg-do-what-default}
This page took 0.074738 seconds and 5 git commands to generate.