From: Aldy Hernandez Date: Thu, 1 Feb 2018 17:12:28 +0000 (+0000) Subject: re PR middle-end/84089 (FAIL: g++.dg/cpp1y/lambda-generic-x.C -std=gnu++14 (internal... X-Git-Tag: basepoints/gcc-9~1461 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=177a970007480a410e84882267ed010178f5fc5a;p=thirdparty%2Fgcc.git re PR middle-end/84089 (FAIL: g++.dg/cpp1y/lambda-generic-x.C -std=gnu++14 (internal compiler error)) PR target/84089 * config/pa/predicates.md (base14_operand): Handle E_VOIDmode. From-SVN: r257304 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 25a1beefe70a..6fe5671ba16d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-02-01 Aldy Hernandez + + PR target/84089 + * config/pa/predicates.md (base14_operand): Handle E_VOIDmode. + 2018-02-01 Jeff Law PR target/84128 diff --git a/gcc/config/pa/predicates.md b/gcc/config/pa/predicates.md index 4600f988c87d..cc2bffa07629 100644 --- a/gcc/config/pa/predicates.md +++ b/gcc/config/pa/predicates.md @@ -277,6 +277,9 @@ case E_HImode: return true; + case E_VOIDmode: + return false; + default: return (INTVAL (op) % GET_MODE_SIZE (mode)) == 0; }