diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2015-05-22 01:04:17 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-05-22 01:04:17 +0000 |
commit | 692e031294569fc76371c9eda58f01cce1716c22 (patch) | |
tree | 140844ad5e7d79e1b2e7a34393602b9ee0d1c5c3 /gcc/toplev.c | |
parent | 759df569f189ce9e4d015c5b46ea5e2107923c69 (diff) | |
download | gcc-692e031294569fc76371c9eda58f01cce1716c22.zip gcc-692e031294569fc76371c9eda58f01cce1716c22.tar.gz gcc-692e031294569fc76371c9eda58f01cce1716c22.tar.bz2 |
remove #if HAVE_conditional_move
gcc/ChangeLog:
2015-05-20 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* combine.c, expmed.c, expr.c, optabs.c optabs.h, toplev.c: DOn't
check HAVE_conditional_move with the preprocessor.
From-SVN: r223518
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 9be15d7..18a725a 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1576,11 +1576,12 @@ process_options (void) warning (0, "var-tracking-assignments changes selective scheduling"); if (flag_tree_cselim == AUTODETECT_VALUE) -#if HAVE_conditional_move - flag_tree_cselim = 1; -#else - flag_tree_cselim = 0; -#endif + { + if (HAVE_conditional_move) + flag_tree_cselim = 1; + else + flag_tree_cselim = 0; + } /* If auxiliary info generation is desired, open the output file. This goes in the same directory as the source file--unlike |