diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-07 19:35:13 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-07 19:35:13 +0000 |
commit | 9e3bd669b8773461ef05b43e356f2e2214919709 (patch) | |
tree | ea3f53c154934cdc8eef1660c3e846a8e4768e64 | |
parent | 008c057d5065c458c8da24cfb47afb2caf0f1844 (diff) | |
download | gcc-9e3bd669b8773461ef05b43e356f2e2214919709.tar.gz |
* config/i386/i386.c (override_options): Don't set x86_prefetch_sse
from -mtune= option.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84223 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8fef3f22c71..63de4dcad6a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-07-07 Jakub Jelinek <jakub@redhat.com> + + * config/i386/i386.c (override_options): Don't set x86_prefetch_sse + from -mtune= option. + 2004-07-07 Alexandre Oliva <aoliva@redhat.com> * builtins.c: Rename movstr*, except for movstrict*, to diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 821bf960d2d..bf836c2af8e 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1308,8 +1308,6 @@ override_options (void) error ("CPU you selected does not support x86-64 instruction set"); break; } - if (processor_alias_table[i].flags & PTA_PREFETCH_SSE) - x86_prefetch_sse = true; if (i == pta_size) error ("bad value (%s) for -mtune= switch", ix86_tune_string); |