From c22264b3f2e05cc6704db1a65a4f743cf7731fe1 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Thu, 10 May 2012 17:46:11 +0300 Subject: [PATCH] bool_implications: remove debugging output This wasn't supposed to be committed or pushed obviously. Signed-off-by: Dan Carpenter --- check_bool_implications.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/check_bool_implications.c b/check_bool_implications.c index 501b4810..9df4ec61 100644 --- a/check_bool_implications.c +++ b/check_bool_implications.c @@ -59,13 +59,11 @@ static void match_return(struct expression *ret_value) } if (get_implied_value(ret_value, &val) && val == 1) { - sm_msg("added to true_stack"); push_slist(&true_stack, clone_slist(__get_cur_slist())); return; } if (get_implied_value(ret_value, &val) && val == 0) { - sm_msg("added to false_stack"); push_slist(&false_stack, clone_slist(__get_cur_slist())); return; } -- 2.11.4.GIT