From 759df569f189ce9e4d015c5b46ea5e2107923c69 Mon Sep 17 00:00:00 2001 From: Trevor Saunders Date: Fri, 22 May 2015 01:04:09 +0000 Subject: always define HAVE_conditional_move gcc/ChangeLog: 2015-05-20 Trevor Saunders * genconfig.c (main): Always define HAVE_conditional_move. * combine.c, expmed.c, expr.c, ifcvt.c, optabs.c, optabs.h, toplev.c, tree-ssa-phiopt.c: Don't check if HAVE_conditional_move is defined. From-SVN: r223517 --- gcc/genconfig.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gcc/genconfig.c') diff --git a/gcc/genconfig.c b/gcc/genconfig.c index 2247eef..a3e5b31 100644 --- a/gcc/genconfig.c +++ b/gcc/genconfig.c @@ -352,6 +352,8 @@ main (int argc, char **argv) if (have_cmove_flag) printf ("#define HAVE_conditional_move 1\n"); + else + printf ("#define HAVE_conditional_move 0\n"); if (have_cond_exec_flag) printf ("#define HAVE_conditional_execution 1\n"); -- cgit v1.1