All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] target/s390x: Prefer MO_128 definition over magic value
@ 2026-04-15 22:03 Philippe Mathieu-Daudé
  2026-04-15 22:06 ` Pierrick Bouvier
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2026-04-15 22:03 UTC (permalink / raw)
  To: qemu-devel
  Cc: Ilya Leoshkevich, Eric Farman, David Hildenbrand, qemu-s390x,
	Richard Henderson, Matthew Rosato, Cornelia Huck,
	Philippe Mathieu-Daudé

The MO_128 definition was not existing when commit 6d841663be8
("s390x/tcg: Implement VECTOR GATHER ELEMENT") introduced the
ES_128 definition. It was added 2 years later in commit 4b473e0c60d
("tcg: Expand MO_SIZE to 3 bits"). Since it is now available,
replace the magic '4' by the more explicit 'MO_128'.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
 target/s390x/tcg/translate_vx.c.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/s390x/tcg/translate_vx.c.inc b/target/s390x/tcg/translate_vx.c.inc
index b53e9e52639..447641df25c 100644
--- a/target/s390x/tcg/translate_vx.c.inc
+++ b/target/s390x/tcg/translate_vx.c.inc
@@ -50,7 +50,7 @@
 #define ES_16   MO_16
 #define ES_32   MO_32
 #define ES_64   MO_64
-#define ES_128  4
+#define ES_128  MO_128
 
 /* Floating-Point Format */
 #define FPF_SHORT       2
-- 
2.53.0



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

end of thread, other threads:[~2026-04-17 15:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-15 22:03 [PATCH] target/s390x: Prefer MO_128 definition over magic value Philippe Mathieu-Daudé
2026-04-15 22:06 ` Pierrick Bouvier
2026-04-16  0:19 ` Richard Henderson
2026-04-16  2:22 ` Matthew Rosato
2026-04-17 15:16 ` Cornelia Huck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.