* config/spu/spu.c (spu_sched_reorder): Add missing fallthru comment.
(spu_legitimate_address_p): Fix logic error and add missing fallthru
comment.
From-SVN: r241557
+2016-10-26 Jeff Law <law@redhat.com>
+
+ * config/spu/spu.c (spu_sched_reorder): Add missing fallthru comment.
+ (spu_legitimate_address_p): Fix logic error and add missing fallthru
+ comment.
+
2016-10-26 Michael Matz <matz@suse.de>
PR tree-optimization/78060
case TYPE_LOAD:
case TYPE_STORE:
pipe_ls = i;
+ /* FALLTHRU */
case TYPE_LNOP:
case TYPE_SHUF:
case TYPE_BR:
case SUBREG:
x = XEXP (x, 0);
- if (REG_P (x))
+ if (!REG_P (x))
return 0;
+ /* FALLTHRU */
case REG:
return INT_REG_OK_FOR_BASE_P (x, reg_ok_strict);