public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/meissner/heads/work118)] Fix typo in insn name.
@ 2023-04-15  1:11 Michael Meissner
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Meissner @ 2023-04-15  1:11 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:9a6619ba4dd8243faaac426bad397045a7db305f

commit 9a6619ba4dd8243faaac426bad397045a7db305f
Author: Michael Meissner <meissner@linux.ibm.com>
Date:   Fri Apr 14 21:11:02 2023 -0400

    Fix typo in insn name.
    
    In doing other work, I noticed that there was an insn:
    
            vsx_extract_v4sf_<mode>_load
    
    Which did not have an iterator.  I removed the useless <mode>.
    
    2023-04-14   Michael Meissner  <meissner@linux.ibm.com>
    
    gcc/
    
            * config/rs6000/vsx.md (vsx_extract_v4sf_load): Rename from
            vsx_extract_v4sf_<mode>_load.

Diff:
---
 gcc/config/rs6000/vsx.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md
index d615474df01..417aff5e24b 100644
--- a/gcc/config/rs6000/vsx.md
+++ b/gcc/config/rs6000/vsx.md
@@ -3549,7 +3549,7 @@
   [(set_attr "length" "8")
    (set_attr "type" "fp")])
 
-(define_insn_and_split "*vsx_extract_v4sf_<mode>_load"
+(define_insn_and_split "*vsx_extract_v4sf_load"
   [(set (match_operand:SF 0 "register_operand" "=f,v,v,?r")
 	(vec_select:SF
 	 (match_operand:V4SF 1 "memory_operand" "m,Z,m,m")

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gcc(refs/users/meissner/heads/work118)] Fix typo in insn name.
@ 2023-04-15  1:29 Michael Meissner
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Meissner @ 2023-04-15  1:29 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:1ff01f9df9507d9626bdf82e3106870eb2ad062b

commit 1ff01f9df9507d9626bdf82e3106870eb2ad062b
Author: Michael Meissner <meissner@linux.ibm.com>
Date:   Fri Apr 14 21:29:32 2023 -0400

    Fix typo in insn name.
    
    In doing other work, I noticed that there was an insn:
    
            vsx_extract_v4sf_<mode>_load
    
    Which did not have an iterator.  I removed the useless <mode>.
    
    2023-04-14   Michael Meissner  <meissner@linux.ibm.com>
    
    gcc/
    
            * config/rs6000/vsx.md (vsx_extract_v4sf_load): Rename from
            vsx_extract_v4sf_<mode>_load.

Diff:
---
 gcc/config/rs6000/vsx.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md
index d615474df01..417aff5e24b 100644
--- a/gcc/config/rs6000/vsx.md
+++ b/gcc/config/rs6000/vsx.md
@@ -3549,7 +3549,7 @@
   [(set_attr "length" "8")
    (set_attr "type" "fp")])
 
-(define_insn_and_split "*vsx_extract_v4sf_<mode>_load"
+(define_insn_and_split "*vsx_extract_v4sf_load"
   [(set (match_operand:SF 0 "register_operand" "=f,v,v,?r")
 	(vec_select:SF
 	 (match_operand:V4SF 1 "memory_operand" "m,Z,m,m")

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gcc(refs/users/meissner/heads/work118)] Fix typo in insn name.
@ 2023-04-14 14:02 Michael Meissner
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Meissner @ 2023-04-14 14:02 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:052f26ba094e5230e31798ae7e5f1fdcda6c0d00

commit 052f26ba094e5230e31798ae7e5f1fdcda6c0d00
Author: Michael Meissner <meissner@linux.ibm.com>
Date:   Fri Apr 14 10:02:30 2023 -0400

    Fix typo in insn name.
    
    In doing other work, I noticed that there was an insn:
    
            vsx_extract_v4sf_<mode>_load
    
    Which did not have an iterator.  I removed the useless <mode>.
    
    2023-04-14   Michael Meissner  <meissner@linux.ibm.com>
    
    gcc/
    
            * config/rs6000/vsx.md (vsx_extract_v4sf_load): Rename from
            vsx_extract_v4sf_<mode>_load.

Diff:
---
 gcc/config/rs6000/vsx.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md
index d615474df01..417aff5e24b 100644
--- a/gcc/config/rs6000/vsx.md
+++ b/gcc/config/rs6000/vsx.md
@@ -3549,7 +3549,7 @@
   [(set_attr "length" "8")
    (set_attr "type" "fp")])
 
-(define_insn_and_split "*vsx_extract_v4sf_<mode>_load"
+(define_insn_and_split "*vsx_extract_v4sf_load"
   [(set (match_operand:SF 0 "register_operand" "=f,v,v,?r")
 	(vec_select:SF
 	 (match_operand:V4SF 1 "memory_operand" "m,Z,m,m")

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gcc(refs/users/meissner/heads/work118)] Fix typo in insn name.
@ 2023-04-13 19:23 Michael Meissner
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Meissner @ 2023-04-13 19:23 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:dc4f402914618f8ecb1aee1839387e3929f2287b

commit dc4f402914618f8ecb1aee1839387e3929f2287b
Author: Michael Meissner <meissner@linux.ibm.com>
Date:   Thu Apr 13 15:23:15 2023 -0400

    Fix typo in insn name.
    
    In doing other work, I noticed that there was an insn:
    
            vsx_extract_v4sf_<mode>_load
    
    Which did not have an iterator.  I removed the useless <mode>.
    
    2023-04-13   Michael Meissner  <meissner@linux.ibm.com>
    
    gcc/
    
            * config/rs6000/vsx.md (vsx_extract_v4sf_load): Rename from
            vsx_extract_v4sf_<mode>_load.

Diff:
---
 gcc/config/rs6000/vsx.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md
index d615474df01..417aff5e24b 100644
--- a/gcc/config/rs6000/vsx.md
+++ b/gcc/config/rs6000/vsx.md
@@ -3549,7 +3549,7 @@
   [(set_attr "length" "8")
    (set_attr "type" "fp")])
 
-(define_insn_and_split "*vsx_extract_v4sf_<mode>_load"
+(define_insn_and_split "*vsx_extract_v4sf_load"
   [(set (match_operand:SF 0 "register_operand" "=f,v,v,?r")
 	(vec_select:SF
 	 (match_operand:V4SF 1 "memory_operand" "m,Z,m,m")

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gcc(refs/users/meissner/heads/work118)] Fix typo in insn name.
@ 2023-04-13 15:53 Michael Meissner
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Meissner @ 2023-04-13 15:53 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:15ffc3a0eceefd2018ed53eb0e8b79db44817236

commit 15ffc3a0eceefd2018ed53eb0e8b79db44817236
Author: Michael Meissner <meissner@linux.ibm.com>
Date:   Thu Apr 13 11:53:21 2023 -0400

    Fix typo in insn name.
    
    In doing other work, I noticed that there was an insn:
    
            vsx_extract_v4sf_<mode>_load
    
    Which did not have an iterator.  I removed the useless <mode>.
    
    2023-04-13   Michael Meissner  <meissner@linux.ibm.com>
    
    gcc/
    
            * config/rs6000/vsx.md (vsx_extract_v4sf_load): Rename from
            vsx_extract_v4sf_<mode>_load.

Diff:
---
 gcc/config/rs6000/vsx.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/rs6000/vsx.md b/gcc/config/rs6000/vsx.md
index d615474df01..417aff5e24b 100644
--- a/gcc/config/rs6000/vsx.md
+++ b/gcc/config/rs6000/vsx.md
@@ -3549,7 +3549,7 @@
   [(set_attr "length" "8")
    (set_attr "type" "fp")])
 
-(define_insn_and_split "*vsx_extract_v4sf_<mode>_load"
+(define_insn_and_split "*vsx_extract_v4sf_load"
   [(set (match_operand:SF 0 "register_operand" "=f,v,v,?r")
 	(vec_select:SF
 	 (match_operand:V4SF 1 "memory_operand" "m,Z,m,m")

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-04-15  1:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-15  1:11 [gcc(refs/users/meissner/heads/work118)] Fix typo in insn name Michael Meissner
  -- strict thread matches above, loose matches on Subject: below --
2023-04-15  1:29 Michael Meissner
2023-04-14 14:02 Michael Meissner
2023-04-13 19:23 Michael Meissner
2023-04-13 15:53 Michael Meissner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).