This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 5/8] S/390: Fix rtl standard names for vector unpack low->lo


gcc/ChangeLog:

2017-09-26  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>

	* config/s390/vector.md ("vec_unpacks_low_v16qi"): Rename to
	vec_unpacks_lo_v16qi.
	("vec_unpacku_low_v16qi"): Rename to vec_unpacku_lo_v16qi.
---
 gcc/ChangeLog             | 6 ++++++
 gcc/config/s390/vector.md | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d2808b5..7863af1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,11 @@
 2017-09-26  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
 
+	* config/s390/vector.md ("vec_unpacks_low_v16qi"): Rename to
+	vec_unpacks_lo_v16qi.
+	("vec_unpacku_low_v16qi"): Rename to vec_unpacku_lo_v16qi.
+
+2017-09-26  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
+
 	* config/s390/vector.md ("vec_unpacks_lo_v4sf")
 	("vec_unpacks_hi_v4sf", "vec_unpacks_lo_v2df")
 	("vec_unpacks_hi_v2df", "vec_pack_trunc_v2df"): New expanders.
diff --git a/gcc/config/s390/vector.md b/gcc/config/s390/vector.md
index c15d81d..06c88c1 100644
--- a/gcc/config/s390/vector.md
+++ b/gcc/config/s390/vector.md
@@ -1652,7 +1652,7 @@
   "vuphb\t%0,%1"
   [(set_attr "op_type" "VRR")])
 
-(define_insn "vec_unpacks_low_v16qi"
+(define_insn "vec_unpacks_lo_v16qi"
   [(set (match_operand:V8HI 0 "register_operand" "=v")
 	(sign_extend:V8HI
 	 (vec_select:V8QI
@@ -1676,7 +1676,7 @@
   "vuplhb\t%0,%1"
   [(set_attr "op_type" "VRR")])
 
-(define_insn "vec_unpacku_low_v16qi"
+(define_insn "vec_unpacku_lo_v16qi"
   [(set (match_operand:V8HI 0 "register_operand" "=v")
 	(zero_extend:V8HI
 	 (vec_select:V8QI
-- 
2.9.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]