diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-07-07 21:35:13 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2004-07-07 21:35:13 +0200 |
commit | 6c4918da7335aa1a76ad468594762cffbef822a7 (patch) | |
tree | ea3f53c154934cdc8eef1660c3e846a8e4768e64 | |
parent | 70128ad9f6972054d3be944931f848f5fe2af4f4 (diff) | |
download | gcc-6c4918da7335aa1a76ad468594762cffbef822a7.zip gcc-6c4918da7335aa1a76ad468594762cffbef822a7.tar.gz gcc-6c4918da7335aa1a76ad468594762cffbef822a7.tar.bz2 |
i386.c (override_options): Don't set x86_prefetch_sse from -mtune= option.
* config/i386/i386.c (override_options): Don't set x86_prefetch_sse
from -mtune= option.
From-SVN: r84223
-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 8fef3f2..63de4dc 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 821bf96..bf836c2 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); |