aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <jimw@sifive.com>2018-05-16 18:37:52 +0000
committerJim Wilson <wilson@gcc.gnu.org>2018-05-16 11:37:52 -0700
commit110fb19f6c6a4a9dfb9cfe00d3295cccf5b00507 (patch)
treee02e1fd25e1387582b79b5d043e8a980ac37d64e
parentbb14f4c6da3da116c7b88c482daadaf3522870e8 (diff)
downloadgcc-110fb19f6c6a4a9dfb9cfe00d3295cccf5b00507.zip
gcc-110fb19f6c6a4a9dfb9cfe00d3295cccf5b00507.tar.gz
gcc-110fb19f6c6a4a9dfb9cfe00d3295cccf5b00507.tar.bz2
RISC-V: Minor pattern name cleanup.
gcc/ * config/riscv/riscv.md (<optab>si3_mask, <optab>si3_mask_1): Prepend asterisk to name. (<optab>di3_mask, <optab>di3_mask_1): Likewise. From-SVN: r260299
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/riscv/riscv.md8
2 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index cf9cbcc..700ac4a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2018-05-16 Jim Wilson <jimw@sifive.com>
+
+ * config/riscv/riscv.md (<optab>si3_mask, <optab>si3_mask_1): Prepend
+ asterisk to name.
+ (<optab>di3_mask, <optab>di3_mask_1): Likewise.
+
2018-05-16 Mark Wielaard <mark@klomp.org>
* dwarf2out.c (count_index_strings): New function.
diff --git a/gcc/config/riscv/riscv.md b/gcc/config/riscv/riscv.md
index 9d22273..56fe516 100644
--- a/gcc/config/riscv/riscv.md
+++ b/gcc/config/riscv/riscv.md
@@ -1504,7 +1504,7 @@
[(set_attr "type" "shift")
(set_attr "mode" "SI")])
-(define_insn_and_split "<optab>si3_mask"
+(define_insn_and_split "*<optab>si3_mask"
[(set (match_operand:SI 0 "register_operand" "= r")
(any_shift:SI
(match_operand:SI 1 "register_operand" " r")
@@ -1523,7 +1523,7 @@
[(set_attr "type" "shift")
(set_attr "mode" "SI")])
-(define_insn_and_split "<optab>si3_mask_1"
+(define_insn_and_split "*<optab>si3_mask_1"
[(set (match_operand:SI 0 "register_operand" "= r")
(any_shift:SI
(match_operand:SI 1 "register_operand" " r")
@@ -1559,7 +1559,7 @@
[(set_attr "type" "shift")
(set_attr "mode" "DI")])
-(define_insn_and_split "<optab>di3_mask"
+(define_insn_and_split "*<optab>di3_mask"
[(set (match_operand:DI 0 "register_operand" "= r")
(any_shift:DI
(match_operand:DI 1 "register_operand" " r")
@@ -1579,7 +1579,7 @@
[(set_attr "type" "shift")
(set_attr "mode" "DI")])
-(define_insn_and_split "<optab>di3_mask_1"
+(define_insn_and_split "*<optab>di3_mask_1"
[(set (match_operand:DI 0 "register_operand" "= r")
(any_shift:DI
(match_operand:DI 1 "register_operand" " r")