]> gcc.gnu.org Git - gcc.git/commitdiff
mips: Update unexpected empty split condition
authorKewen Lin <linkw@linux.ibm.com>
Fri, 28 May 2021 05:21:07 +0000 (00:21 -0500)
committerKewen Lin <linkw@linux.ibm.com>
Sat, 5 Jun 2021 11:27:47 +0000 (06:27 -0500)
gcc/ChangeLog:

* config/mips/mips.md (<anonymous>, bswapsi2, bswapdi2): Fix empty
split condition.

gcc/config/mips/mips.md

index eef3cfd50a84e016e62a354f66c3c506a934eb8c..455b9b802f6cfb831e9b995d0cf6e252fe026f02 100644 (file)
                     (match_operand:SI 2 "immediate_operand" "I")))]
   "TARGET_MIPS16"
   "#"
-  ""
+  "&& 1"
   [(set (match_dup 0) (match_dup 1))
    (set (match_dup 0) (lshiftrt:SI (match_dup 0) (match_dup 2)))]
   ""
        (bswap:SI (match_operand:SI 1 "register_operand" "d")))]
   "ISA_HAS_WSBH && ISA_HAS_ROR"
   "#"
-  ""
+  "&& 1"
   [(set (match_dup 0) (unspec:SI [(match_dup 1)] UNSPEC_WSBH))
    (set (match_dup 0) (rotatert:SI (match_dup 0) (const_int 16)))]
   ""
        (bswap:DI (match_operand:DI 1 "register_operand" "d")))]
   "TARGET_64BIT && ISA_HAS_WSBH"
   "#"
-  ""
+  "&& 1"
   [(set (match_dup 0) (unspec:DI [(match_dup 1)] UNSPEC_DSBH))
    (set (match_dup 0) (unspec:DI [(match_dup 0)] UNSPEC_DSHD))]
   ""
This page took 0.071607 seconds and 5 git commands to generate.