mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-22 11:31:05 +08:00
graphite.exp (DEFAULT_CFLAGS_GRAPHITE_BLOCK): Renamed DEFAULT_FLAGS_GRAPHITE_BLOCK.
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
This commit is contained in:
parent
2b7c09a8b3
commit
6231cf4946
@ -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.
|
||||
|
@ -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}
|
||||
|
Loading…
x
Reference in New Issue
Block a user