+2019-07-20 Jakub Jelinek <jakub@redhat.com>
+
+ PR target/91204
+ * optabs.c (expand_unop): As fallback, expand ~op0 as op0 ^ -1.
+
2019-07-20 John David Anglin <danglin@gcc.gnu.org>
* config/pa/pa.h (hppa_profile_hook): Delete declaration.
return target;
}
+ /* Emit ~op0 as op0 ^ -1. */
+ if (unoptab == one_cmpl_optab
+ && (SCALAR_INT_MODE_P (mode) || GET_MODE_CLASS (mode) == MODE_VECTOR_INT)
+ && optab_handler (xor_optab, mode) != CODE_FOR_nothing)
+ {
+ temp = expand_binop (mode, xor_optab, op0, CONSTM1_RTX (mode),
+ target, unsignedp, OPTAB_DIRECT);
+ if (temp)
+ return temp;
+ }
+
if (optab_to_code (unoptab) == NEG)
{
/* Try negating floating point values by flipping the sign bit. */
2019-07-20 Jakub Jelinek <jakub@redhat.com>
+ PR target/91204
+ * gcc.c-torture/compile/pr91204.c: New test.
+
* c-c++-common/gomp/cancel-1.c: Adjust expected diagnostic wording.
* c-c++-common/gomp/clauses-1.c (foo, baz, bar): Add order(concurrent)
clause where allowed. Add combined constructs with loop with all