From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1383) id ABAB43857C7C; Wed, 5 Oct 2022 19:13:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org ABAB43857C7C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664997189; bh=C6kR2Rr7J+9JOrrTnKNRkzpm/ij05T2OkvvEqWG2/54=; h=From:To:Subject:Date:From; b=cT3tWqnrx8hpJee5/ye4thxuxu6SaUFb3qnxuRDiVLzodSbWTYZ78EtAPK+meHR6H 2/WGk/QV08kbzQ4O0LWDOws8HsN67rtc5E/A0xNxmSn2Vzsx8lRGui8cd2i4KyNoaa /BITeQTnCanJzJMviDComjOz5w/XiqlfKomk+7jY= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Segher Boessenkool To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-3100] rs6000: Remove the wD constraint X-Act-Checkin: gcc X-Git-Author: Segher Boessenkool X-Git-Refname: refs/heads/master X-Git-Oldrev: ba3e5a3826be53ecbb7d6044c50878d44640c296 X-Git-Newrev: e99dcbb54e07b798c3353124f38336f96a826d43 Message-Id: <20221005191309.ABAB43857C7C@sourceware.org> Date: Wed, 5 Oct 2022 19:13:09 +0000 (GMT) List-Id: https://gcc.gnu.org/g:e99dcbb54e07b798c3353124f38336f96a826d43 commit r13-3100-ge99dcbb54e07b798c3353124f38336f96a826d43 Author: Segher Boessenkool Date: Tue Oct 4 21:22:15 2022 +0000 rs6000: Remove the wD constraint 2022-10-05 Segher Boessenkool * config/rs6000/constraints.md (wD): Delete. * doc/md.texi (Machine Constraints): Adjust. Diff: --- gcc/config/rs6000/constraints.md | 6 ------ gcc/doc/md.texi | 3 --- 2 files changed, 9 deletions(-) diff --git a/gcc/config/rs6000/constraints.md b/gcc/config/rs6000/constraints.md index 5a44a92142e..54fef8d9996 100644 --- a/gcc/config/rs6000/constraints.md +++ b/gcc/config/rs6000/constraints.md @@ -107,12 +107,6 @@ (match_test "TARGET_P8_VECTOR") (match_operand 0 "s5bit_cint_operand"))) -(define_constraint "wD" - "@internal Int constant that is the element number of the 64-bit scalar - in a vector." - (and (match_code "const_int") - (match_test "TARGET_VSX && (ival == VECTOR_ELEMENT_SCALAR_64BIT)"))) - (define_constraint "wE" "@internal Vector constant that can be loaded with the XXSPLTIB instruction." (match_test "xxspltib_constant_nosplit (op, mode)")) diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi index bb42ee1da36..d0a71ecbb80 100644 --- a/gcc/doc/md.texi +++ b/gcc/doc/md.texi @@ -3267,9 +3267,6 @@ Like @code{b}, if @option{-mpowerpc64} is used; otherwise, @code{NO_REGS}. @item wB Signed 5-bit constant integer that can be loaded into an Altivec register. -@item wD -Int constant that is the element number of the 64-bit scalar in a vector. - @item wE Vector constant that can be loaded with the XXSPLTIB instruction.