diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-08-21 01:14:46 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-08-21 01:14:46 +0000 |
commit | 9c80fc9f5e37bad0031260fd8c70356dcd35b46b (patch) | |
tree | 7443d07af38b949642aa20ad2549db1b75dee85a /gcc/targhooks.c | |
parent | 4c529914197ba2c7c7044f6e9fbf53a00cf5792e (diff) | |
download | gcc-9c80fc9f5e37bad0031260fd8c70356dcd35b46b.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@227049 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/targhooks.c')
-rw-r--r-- | gcc/targhooks.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c index 3eca47e9888..7238c8f8013 100644 --- a/gcc/targhooks.c +++ b/gcc/targhooks.c @@ -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, |