aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.misc-tests
diff options
context:
space:
mode:
authorKelley Cook <kelleycook@comcast.net>2003-02-23 03:10:03 +0000
committerRichard Henderson <rth@gcc.gnu.org>2003-02-22 19:10:03 -0800
commit9d913bbf3fc996874649168d7d144a642012ac9b (patch)
tree9eec2ddc6f4bfc5c8145f9333f27b44a5b9a5d83 /gcc/testsuite/gcc.misc-tests
parent185e2e13154954d3bf063d8112ba5eda84f743ec (diff)
downloadgcc-9d913bbf3fc996874649168d7d144a642012ac9b.zip
gcc-9d913bbf3fc996874649168d7d144a642012ac9b.tar.gz
gcc-9d913bbf3fc996874649168d7d144a642012ac9b.tar.bz2
i386.c: Replace "mcpu" with "mtune".
* config/i386/i386.c: Replace "mcpu" with "mtune". * config/i386/i386.h (TARGET_OPTIONS): Likewise. (CC1_CPU_SPEC): Likewise. New warning for "-mcpu". * doc/invoke.texi (i386 and x86-64 Options): Replace "mcpu" with "mtune". Note that "mcpu" is a deprecated synonym for "mtune". * g++.old-deja/g++.other/store-expr1.C: Replace "mcpu" with "mtune". * g++.old-deja/g++.other/store-expr2.C: Likewise. * gcc.c-torture/execute/20010129-1.x: Likewise. * gcc.dg/20011107-1.c: Likewise. * gcc.dg/20020108-1.c: Likewise. * gcc.dg/20020122-3.c: Likewise. * gcc.dg/20020206-1.c: Likewise. * gcc.dg/20020310-1.c: Likewise. * gcc.dg/20020426-2.c: Likewise. * gcc.dg/20020517-1.c: Likewise. * gcc.dg/991230-1.c: Likewise. * gcc.dg/i386-unroll-1.c: Likewise. * gcc.misc-tests/i386-prefetch.exp: Likewise. From-SVN: r63313
Diffstat (limited to 'gcc/testsuite/gcc.misc-tests')
-rw-r--r--gcc/testsuite/gcc.misc-tests/i386-prefetch.exp26
1 files changed, 13 insertions, 13 deletions
diff --git a/gcc/testsuite/gcc.misc-tests/i386-prefetch.exp b/gcc/testsuite/gcc.misc-tests/i386-prefetch.exp
index 3091845..f452038 100644
--- a/gcc/testsuite/gcc.misc-tests/i386-prefetch.exp
+++ b/gcc/testsuite/gcc.misc-tests/i386-prefetch.exp
@@ -24,14 +24,14 @@
# Do not generate prefetch instructions for the following options.
set PREFETCH_NONE [list \
- { -mcpu=i386 } \
- { -mcpu=i486 } \
- { -mcpu=i586 } \
- { -mcpu=i686 } \
- { -mcpu=pentium2 } \
- { -mcpu=k6 } \
- { -mcpu=k6-2 } \
- { -mcpu=k6-3 } \
+ { -mtune=i386 } \
+ { -mtune=i486 } \
+ { -mtune=i586 } \
+ { -mtune=i686 } \
+ { -mtune=pentium2 } \
+ { -mtune=k6 } \
+ { -mtune=k6-2 } \
+ { -mtune=k6-3 } \
{ -march=i386 } \
{ -march=i486 } \
{ -march=i586 } \
@@ -40,14 +40,14 @@ set PREFETCH_NONE [list \
{ -march=k6 } ]
# For options in PREFETCH_SSE, generate SSE prefetch instructions for
-# __builtin_prefetch. This includes -mcpu for targets that treat prefetch
+# __builtin_prefetch. This includes -mtune for targets that treat prefetch
# instructions as nops.
set PREFETCH_SSE [list \
- { -mcpu=pentium3 } \
- { -mcpu=pentium4 } \
- { -mcpu=athlon } \
- { -mcpu=athlon-4 } \
+ { -mtune=pentium3 } \
+ { -mtune=pentium4 } \
+ { -mtune=athlon } \
+ { -mtune=athlon-4 } \
{ -march=pentium3 } \
{ -march=pentium4 } ]