Commit e9b763a8 authored by dje's avatar dje
Browse files

* opts.c (common_handle_option): Do not enable

        flag_speculative_prefetching for -fprofile-generate/use.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89046 138bc75d-0d04-0410-961f-82ee72b054a4
parent c077abad
2004-10-14 David Edelsohn <edelsohn@gnu.org>
* opts.c (common_handle_option): Do not enable
flag_speculative_prefetching for -fprofile-generate/use.
2004-10-14 Devang Patel <dpatel@apple.com>
 
PR 17635
......
......@@ -842,7 +842,7 @@ common_handle_option (size_t scode, const char *arg, int value)
if (!flag_value_profile_transformations_set)
flag_value_profile_transformations = value;
#ifdef HAVE_prefetch
if (!flag_speculative_prefetching_set)
if (0 && !flag_speculative_prefetching_set)
flag_speculative_prefetching = value;
#endif
break;
......@@ -855,7 +855,7 @@ common_handle_option (size_t scode, const char *arg, int value)
if (!flag_value_profile_transformations_set)
flag_value_profile_transformations = value;
#ifdef HAVE_prefetch
if (!flag_speculative_prefetching_set)
if (0 && !flag_speculative_prefetching_set)
flag_speculative_prefetching = value;
#endif
break;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment