diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2013-12-26 21:05:02 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2013-12-26 13:05:02 -0800 |
commit | 3a89fcdaf40d9f3bb92ed38f32efa7f2cced782b (patch) | |
tree | 1d75158c268a97ad8b8b6710fbfd14afb2d89e04 | |
parent | 8b49aa88cc0ef81bb7a0301fcfce6d6318e15041 (diff) | |
download | gcc-3a89fcdaf40d9f3bb92ed38f32efa7f2cced782b.zip gcc-3a89fcdaf40d9f3bb92ed38f32efa7f2cced782b.tar.gz gcc-3a89fcdaf40d9f3bb92ed38f32efa7f2cced782b.tar.bz2 |
Replace -mtune=i686 with -mtune=generic
* g++.old-deja/g++.other/store-expr1.C (dg-options): Replace
-mtune=i686 with -mtune=generic.
* g++.old-deja/g++.other/store-expr2.C (dg-options): Likewise.
From-SVN: r206215
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/store-expr1.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/store-expr2.C | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 98d22b3e..ad98f63 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,11 @@ 2013-12-26 H.J. Lu <hongjiu.lu@intel.com> + * g++.old-deja/g++.other/store-expr1.C (dg-options): Replace + -mtune=i686 with -mtune=generic. + * g++.old-deja/g++.other/store-expr2.C (dg-options): Likewise. + +2013-12-26 H.J. Lu <hongjiu.lu@intel.com> + * gcc.target/i386/andor-2.c (dg-options): Replace -mtune=i686 with -mtune=generic. diff --git a/gcc/testsuite/g++.old-deja/g++.other/store-expr1.C b/gcc/testsuite/g++.old-deja/g++.other/store-expr1.C index 72d30eb..af5e415 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/store-expr1.C +++ b/gcc/testsuite/g++.old-deja/g++.other/store-expr1.C @@ -1,7 +1,7 @@ // { dg-do run { target i?86-*-* x86_64-*-* } } // { dg-require-effective-target ilp32 } // { dg-require-effective-target fpic } -// { dg-options "-mtune=i686 -O2 -fpic" } +// { dg-options "-mtune=generic -O2 -fpic" } class G {}; struct N { diff --git a/gcc/testsuite/g++.old-deja/g++.other/store-expr2.C b/gcc/testsuite/g++.old-deja/g++.other/store-expr2.C index 99e0943..1dffbcc 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/store-expr2.C +++ b/gcc/testsuite/g++.old-deja/g++.other/store-expr2.C @@ -1,6 +1,6 @@ // { dg-do run { target i?86-*-* x86_64-*-*} } // { dg-require-effective-target ilp32 } -// { dg-options "-mtune=i686 -O2" } +// { dg-options "-mtune=generic -O2" } class G {}; struct N { |