diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6facb484ff8f..a3e779458597 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2016-10-12 Aaron Sawdey + + PR target/77934 + * config/rs6000/vmx.md (vsx_concat_): The mtvsrdd instruction + needs a base register for arg 1. + 2016-10-12 Jakub Jelinek * common.opt (Wimplicit-fallthrough) Turn into alias to diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md index 359e424d6b4a..0f650242da4a 100644 --- a/gcc/config/rs6000/vsx.md +++ b/gcc/config/rs6000/vsx.md @@ -1938,8 +1938,8 @@ (define_insn "vsx_concat_" [(set (match_operand:VSX_D 0 "gpc_reg_operand" "=,we") (vec_concat:VSX_D - (match_operand: 1 "gpc_reg_operand" ",r") - (match_operand: 2 "gpc_reg_operand" ",r")))] + (match_operand: 1 "gpc_reg_operand" ",b") + (match_operand: 2 "gpc_reg_operand" ",b")))] "VECTOR_MEM_VSX_P (mode)" { if (which_alternative == 0)