Commit 3020563a by David Edelsohn Committed by David Edelsohn

opts.c (common_handle_option): Do not enable flag_speculative_prefetching for…

opts.c (common_handle_option): Do not enable flag_speculative_prefetching for -fprofile-generate/use.

        * opts.c (common_handle_option): Do not enable
        flag_speculative_prefetching for -fprofile-generate/use.

From-SVN: r89046
parent 0ecf0d5f
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