diff mbox series

IBM Z: Fix output template for "*vfees<mode>"

Message ID 20201112122534.3264324-1-stefansf@linux.ibm.com
State New
Headers show
Series IBM Z: Fix output template for "*vfees<mode>" | expand

Commit Message

Stefan Schulze Frielinghaus Nov. 12, 2020, 12:25 p.m. UTC
Bootstrapped and regtested on IBM Z.  Ok for master?

gcc/ChangeLog:

	* config/s390/vx-builtins.md ("*vfees<mode>"): Fix output
	  template.
---
 gcc/config/s390/vx-builtins.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andreas Krebbel Nov. 12, 2020, 1:06 p.m. UTC | #1
On 12.11.20 13:25, Stefan Schulze Frielinghaus wrote:
> Bootstrapped and regtested on IBM Z.  Ok for master?
> 
> gcc/ChangeLog:
> 
> 	* config/s390/vx-builtins.md ("*vfees<mode>"): Fix output
> 	  template.
> ---
>  gcc/config/s390/vx-builtins.md | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/gcc/config/s390/vx-builtins.md b/gcc/config/s390/vx-builtins.md
> index 010db4d1115..0c2e7170223 100644
> --- a/gcc/config/s390/vx-builtins.md
> +++ b/gcc/config/s390/vx-builtins.md
> @@ -1395,7 +1395,7 @@
>  
>    if (flags == VSTRING_FLAG_ZS)
>      return "vfeez<bhfgq>s\t%v0,%v1,%v2";
> -  return "vfee<bhfgq>s\t%v0,%v1,%v2,%b3";
> +  return "vfee<bhfgq>s\t%v0,%v1,%v2";
>  }
>    [(set_attr "op_type" "VRR")])
>  
> 

Ok. Thanks!

Andreas
Stefan Schulze Frielinghaus Nov. 12, 2020, 4:09 p.m. UTC | #2
As pointed out in
https://gcc.gnu.org/pipermail/gcc-patches/2020-November/558816.html
this instruction pattern will be removed anyway.  Thus we can ignore
this patch.

On Thu, Nov 12, 2020 at 01:25:35PM +0100, Stefan Schulze Frielinghaus wrote:
> Bootstrapped and regtested on IBM Z.  Ok for master?
> 
> gcc/ChangeLog:
> 
> 	* config/s390/vx-builtins.md ("*vfees<mode>"): Fix output
> 	  template.
> ---
>  gcc/config/s390/vx-builtins.md | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/gcc/config/s390/vx-builtins.md b/gcc/config/s390/vx-builtins.md
> index 010db4d1115..0c2e7170223 100644
> --- a/gcc/config/s390/vx-builtins.md
> +++ b/gcc/config/s390/vx-builtins.md
> @@ -1395,7 +1395,7 @@
>  
>    if (flags == VSTRING_FLAG_ZS)
>      return "vfeez<bhfgq>s\t%v0,%v1,%v2";
> -  return "vfee<bhfgq>s\t%v0,%v1,%v2,%b3";
> +  return "vfee<bhfgq>s\t%v0,%v1,%v2";
>  }
>    [(set_attr "op_type" "VRR")])
>  
> -- 
> 2.28.0
>
diff mbox series

Patch

diff --git a/gcc/config/s390/vx-builtins.md b/gcc/config/s390/vx-builtins.md
index 010db4d1115..0c2e7170223 100644
--- a/gcc/config/s390/vx-builtins.md
+++ b/gcc/config/s390/vx-builtins.md
@@ -1395,7 +1395,7 @@ 
 
   if (flags == VSTRING_FLAG_ZS)
     return "vfeez<bhfgq>s\t%v0,%v1,%v2";
-  return "vfee<bhfgq>s\t%v0,%v1,%v2,%b3";
+  return "vfee<bhfgq>s\t%v0,%v1,%v2";
 }
   [(set_attr "op_type" "VRR")])