From b4c73eedf336e26c042bd873e4b49e394a81b4b0 Mon Sep 17 00:00:00 2001 From: Kenneth Zadeck Date: Thu, 28 Mar 2013 14:09:46 +0000 Subject: combine.c (try_combine): Removed useless assert. 2013-03-28 Kenneth Zadeck * combine.c (try_combine): Removed useless assert. * cselib.c (rtx_equal_for_cselib_1): Removed unnecessary parens. From-SVN: r197198 --- gcc/cselib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/cselib.c') diff --git a/gcc/cselib.c b/gcc/cselib.c index f2021b9..dcad9741 100644 --- a/gcc/cselib.c +++ b/gcc/cselib.c @@ -1026,7 +1026,7 @@ rtx_equal_for_cselib_1 (rtx x, rtx y, enum machine_mode memmode) static rtx wrap_constant (enum machine_mode mode, rtx x) { - if ((!CONST_SCALAR_INT_P (x)) && GET_CODE (x) != CONST_FIXED) + if (!CONST_SCALAR_INT_P (x) && GET_CODE (x) != CONST_FIXED) return x; gcc_assert (mode != VOIDmode); return gen_rtx_CONST (mode, x); -- cgit v1.1