2013-03-28 Kenneth Zadeck <zadeck@naturalbridge.com>
* combine.c (try_combine): Removed useless assert.
* cselib.c (rtx_equal_for_cselib_1): Removed unnecessary parens.
From-SVN: r197198
+2013-03-28 Kenneth Zadeck <zadeck@naturalbridge.com>
+
+ * combine.c (try_combine): Removed useless assert.
+ * cselib.c (rtx_equal_for_cselib_1): Removed unnecessary parens.
+
2013-03-28 Marek Polacek <polacek@redhat.com>
Richard Biener <rguenther@suse.de>
int offset = -1;
int width = 0;
- /* There are not explicit tests to make sure that this is not a
- float, but there is code here that would not be correct if it
- was. */
- gcc_assert (GET_MODE_CLASS (GET_MODE (SET_SRC (temp))) != MODE_FLOAT);
-
if (GET_CODE (dest) == ZERO_EXTRACT)
{
if (CONST_INT_P (XEXP (dest, 1))
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);