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
This commit is contained in:
David Edelsohn 2004-10-14 18:29:17 +00:00 committed by David Edelsohn
parent 0ecf0d5f41
commit 3020563ae2
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
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

View file

@ -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;