always define HAVE_conditional_execution

gcc/ChangeLog:

2015-08-20  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

	* genconfig.c (main): Always define HAVE_CONDITIONAL_EXECUTION.
	* targhooks.c (default_have_conditional_execution): Adjust.

From-SVN: r227049
This commit is contained in:
Trevor Saunders 2015-08-21 01:14:46 +00:00 committed by Trevor Saunders
parent 1fec569fc8
commit e1f60ccfab
3 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2015-08-20 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* genconfig.c (main): Always define HAVE_CONDITIONAL_EXECUTION.
* targhooks.c (default_have_conditional_execution): Adjust.
2015-08-20 Richard Sandiford <richard.sandiford@arm.com>
* rtl.h (rtvec_all_equal_p): Declare.

View File

@ -348,6 +348,8 @@ main (int argc, char **argv)
if (have_cond_exec_flag)
printf ("#define HAVE_conditional_execution 1\n");
else
printf ("#define HAVE_conditional_execution 0\n");
if (have_lo_sum_flag)
printf ("#define HAVE_lo_sum 1\n");

View File

@ -1350,11 +1350,7 @@ default_case_values_threshold (void)
bool
default_have_conditional_execution (void)
{
#ifdef HAVE_conditional_execution
return HAVE_conditional_execution;
#else
return false;
#endif
}
/* By default we assume that c99 functions are present at the runtime,