Commit f13d510e by Kelvin Nilsen

re PR target/78577 (Fix define_insn operand types for vexturhlx, vexturhrx,…

re PR target/78577 (Fix define_insn operand types for vexturhlx, vexturhrx, vextuwlx, and vextuwrx patterns)

gcc/ChangeLog:

2016-12-01  Kelvin Nilsen  <kelvin@gcc.gnu.org>

	PR target/78577
	* config/rs6000/vsx.md (vextuhlx): Revise mode of operand 2.
	(vextuhrx): Likewise.
	(vextuwlx): Likewise.
	(vextuwrx): Likewise.

From-SVN: r243141
parent c3a2f740
2016-12-01 Kelvin Nilsen <kelvin@gcc.gnu.org>
PR target/78577
* config/rs6000/vsx.md (vextuhlx): Revise mode of operand 2.
(vextuhrx): Likewise.
(vextuwlx): Likewise.
(vextuwrx): Likewise.
2016-12-01 David Malcolm <dmalcolm@redhat.com> 2016-12-01 David Malcolm <dmalcolm@redhat.com>
* dwarf2out.c (dwarf2out_c_finalize): Reset early_dwarf and * dwarf2out.c (dwarf2out_c_finalize): Reset early_dwarf and
...@@ -3648,7 +3648,7 @@ ...@@ -3648,7 +3648,7 @@
[(set (match_operand:SI 0 "register_operand" "=r") [(set (match_operand:SI 0 "register_operand" "=r")
(unspec:SI (unspec:SI
[(match_operand:SI 1 "register_operand" "r") [(match_operand:SI 1 "register_operand" "r")
(match_operand:V16QI 2 "altivec_register_operand" "v")] (match_operand:V8HI 2 "altivec_register_operand" "v")]
UNSPEC_VEXTUHLX))] UNSPEC_VEXTUHLX))]
"TARGET_P9_VECTOR" "TARGET_P9_VECTOR"
"vextuhlx %0,%1,%2" "vextuhlx %0,%1,%2"
...@@ -3659,7 +3659,7 @@ ...@@ -3659,7 +3659,7 @@
[(set (match_operand:SI 0 "register_operand" "=r") [(set (match_operand:SI 0 "register_operand" "=r")
(unspec:SI (unspec:SI
[(match_operand:SI 1 "register_operand" "r") [(match_operand:SI 1 "register_operand" "r")
(match_operand:V16QI 2 "altivec_register_operand" "v")] (match_operand:V8HI 2 "altivec_register_operand" "v")]
UNSPEC_VEXTUHRX))] UNSPEC_VEXTUHRX))]
"TARGET_P9_VECTOR" "TARGET_P9_VECTOR"
"vextuhrx %0,%1,%2" "vextuhrx %0,%1,%2"
...@@ -3670,7 +3670,7 @@ ...@@ -3670,7 +3670,7 @@
[(set (match_operand:SI 0 "register_operand" "=r") [(set (match_operand:SI 0 "register_operand" "=r")
(unspec:SI (unspec:SI
[(match_operand:SI 1 "register_operand" "r") [(match_operand:SI 1 "register_operand" "r")
(match_operand:V16QI 2 "altivec_register_operand" "v")] (match_operand:V4SI 2 "altivec_register_operand" "v")]
UNSPEC_VEXTUWLX))] UNSPEC_VEXTUWLX))]
"TARGET_P9_VECTOR" "TARGET_P9_VECTOR"
"vextuwlx %0,%1,%2" "vextuwlx %0,%1,%2"
...@@ -3681,7 +3681,7 @@ ...@@ -3681,7 +3681,7 @@
[(set (match_operand:SI 0 "register_operand" "=r") [(set (match_operand:SI 0 "register_operand" "=r")
(unspec:SI (unspec:SI
[(match_operand:SI 1 "register_operand" "r") [(match_operand:SI 1 "register_operand" "r")
(match_operand:V16QI 2 "altivec_register_operand" "v")] (match_operand:V4SI 2 "altivec_register_operand" "v")]
UNSPEC_VEXTUWRX))] UNSPEC_VEXTUWRX))]
"TARGET_P9_VECTOR" "TARGET_P9_VECTOR"
"vextuwrx %0,%1,%2" "vextuwrx %0,%1,%2"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment