diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2011-02-10 20:01:09 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2011-02-10 20:01:09 +0100 |
commit | ea4c3e656e251f9a44df38cb54c2334cae58936d (patch) | |
tree | cf766b11b103d01a4a6b35d6d6dc7451488c8956 | |
parent | 7b8ec21790fa899f8729b8901380129565405dcd (diff) | |
download | gcc-ea4c3e656e251f9a44df38cb54c2334cae58936d.zip gcc-ea4c3e656e251f9a44df38cb54c2334cae58936d.tar.gz gcc-ea4c3e656e251f9a44df38cb54c2334cae58936d.tar.bz2 |
parity-1.c: Use -march=k8.
* gcc.target/i386/parity-1.c: Use -march=k8.
* gcc.target/i386/parity-2.c: Ditto.
* gcc.target/i386/vecinit-1.c: Ditto.
* gcc.target/i386/vecinit-2.c: Ditto.
From-SVN: r170018
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/parity-1.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/parity-2.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/vecinit-1.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/vecinit-2.c | 2 |
6 files changed, 14 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 97f26a9..1e605a6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -15,8 +15,7 @@ 2011-02-10 Richard Guenther <rguenther@suse.de> - * tree-ssa-structalias.c (bitpos_of_field): Use BITS_PER_UNIT, - not 8. + * tree-ssa-structalias.c (bitpos_of_field): Use BITS_PER_UNIT, not 8. 2011-02-10 Richard Guenther <rguenther@suse.de> @@ -117,8 +116,7 @@ (funsafe-math-optimizations): Likewise. * opth-gen.awk: Handle SetByCombined. * optc-gen.awk: Likewise. - * opts.c (set_fast_math_flags): Don't override flag if set by - frontend. + * opts.c (set_fast_math_flags): Don't override flag if set by frontend. (set_unsafe_math_optimizations_flags): Likewise. * doc/options.texi (Option properties): Document SetByCombined. @@ -253,8 +251,7 @@ 2011-02-07 Mike Stump <mikestump@comcast.net> - * config/darwin.opt (mmacosx-version-min): Update default OS - version. + * config/darwin.opt (mmacosx-version-min): Update default OS version. 2011-02-07 Denis Chertykov <chertykov@gmail.com> diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d5176a4..3b15be9 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2011-02-10 Uros Bizjak <ubizjak@gmail.com> + + * gcc.target/i386/parity-1.c: Use -march=k8. + * gcc.target/i386/parity-2.c: Ditto. + * gcc.target/i386/vecinit-1.c: Ditto. + * gcc.target/i386/vecinit-2.c: Ditto. + 2011-02-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> PR target/46610 diff --git a/gcc/testsuite/gcc.target/i386/parity-1.c b/gcc/testsuite/gcc.target/i386/parity-1.c index 0094b5b..eaf41cf 100644 --- a/gcc/testsuite/gcc.target/i386/parity-1.c +++ b/gcc/testsuite/gcc.target/i386/parity-1.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O2" } */ +/* { dg-options "-O2 -march=k8" } */ /* { dg-final { scan-assembler "setnp" } } */ int foo(unsigned int x) diff --git a/gcc/testsuite/gcc.target/i386/parity-2.c b/gcc/testsuite/gcc.target/i386/parity-2.c index a4c238e..03a8061 100644 --- a/gcc/testsuite/gcc.target/i386/parity-2.c +++ b/gcc/testsuite/gcc.target/i386/parity-2.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O2" } */ +/* { dg-options "-O2 -march=k8" } */ /* { dg-final { scan-assembler "setnp" } } */ int foo(unsigned long long int x) diff --git a/gcc/testsuite/gcc.target/i386/vecinit-1.c b/gcc/testsuite/gcc.target/i386/vecinit-1.c index fad0c07..a5091cd 100644 --- a/gcc/testsuite/gcc.target/i386/vecinit-1.c +++ b/gcc/testsuite/gcc.target/i386/vecinit-1.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O2 -msse2" } */ +/* { dg-options "-O2 -march=k8 -msse2" } */ #define vector __attribute__((vector_size(16))) diff --git a/gcc/testsuite/gcc.target/i386/vecinit-2.c b/gcc/testsuite/gcc.target/i386/vecinit-2.c index a3a7abc..52998a6 100644 --- a/gcc/testsuite/gcc.target/i386/vecinit-2.c +++ b/gcc/testsuite/gcc.target/i386/vecinit-2.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O2 -msse2" } */ +/* { dg-options "-O2 -march=k8 -msse2" } */ #define vector __attribute__((vector_size(16))) |