From 03e93e1efebc12d9fba1a2a9cdcb3c12ecfec642 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Thu, 22 Oct 2020 10:45:53 +1030 Subject: [PATCH] [RS6000] VSX_MM_SUFFIX gcc.target/powerpc/vsx_mask-count-runnable.c and others Assembler messages: Error: unrecognized opcode: `vcntmb' * config/rs6000/vsx.md (vec_cntmb_, vec_extract_), (vec_expand_): Replace with . --- gcc/config/rs6000/vsx.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md index c023bc0baaa..d96269367bf 100644 --- a/gcc/config/rs6000/vsx.md +++ b/gcc/config/rs6000/vsx.md @@ -6035,7 +6035,7 @@ (match_operand:QI 2 "const_0_to_1_operand" "n")] UNSPEC_VCNTMB))] "TARGET_POWER10" - "vcntmb %0,%1,%2" + "vcntmb %0,%1,%2" [(set_attr "type" "vecsimple")]) (define_insn "vec_extract_" @@ -6043,7 +6043,7 @@ (unspec:SI [(match_operand:VSX_MM 1 "altivec_register_operand" "v")] UNSPEC_VEXTRACT))] "TARGET_POWER10" - "vextractm %0,%1" + "vextractm %0,%1" [(set_attr "type" "vecsimple")]) (define_insn "vec_expand_" @@ -6051,5 +6051,5 @@ (unspec:VSX_MM [(match_operand:VSX_MM 1 "vsx_register_operand" "v")] UNSPEC_VEXPAND))] "TARGET_POWER10" - "vexpandm %0,%1" + "vexpandm %0,%1" [(set_attr "type" "vecsimple")]) -- 2.30.2