diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-05-22 01:04:17 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-05-22 01:04:17 +0000 |
commit | 9630036a6d102a7238325dae6602322abf901cc0 (patch) | |
tree | 140844ad5e7d79e1b2e7a34393602b9ee0d1c5c3 /gcc/toplev.c | |
parent | cf2f2c56eb85dd164aad2f5b801eb21d78fe8a35 (diff) | |
download | gcc-9630036a6d102a7238325dae6602322abf901cc0.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@223518 138bc75d-0d04-0410-961f-82ee72b054a4
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 9be15d784e4..18a725a779f 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 |