From: Florian K. <fk...@so...> - 2025-06-18 17:02:32
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=e59f3c959102d6ca9f1791c0023f313a1be34030 commit e59f3c959102d6ca9f1791c0023f313a1be34030 Author: Florian Krohm <fl...@ei...> Date: Wed Jun 18 17:02:06 2025 +0000 s390x: Fix a comment Diff: --- VEX/priv/host_s390_defs.h | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/VEX/priv/host_s390_defs.h b/VEX/priv/host_s390_defs.h index 48fbac7644..ddbaed5fe5 100644 --- a/VEX/priv/host_s390_defs.h +++ b/VEX/priv/host_s390_defs.h @@ -100,13 +100,10 @@ typedef enum { } s390_opnd_t; -/* Naming convention for operand locations: - R - GPR - I - immediate value - M - memory (any Amode may be used) -*/ - -/* An operand that is either in a GPR or is addressable via a BX20 amode */ +/* An operand that is either + R located in a GPR or + M located in memory and addressable via any amode or + I an immediate integer constant */ typedef struct { s390_opnd_t tag; union { |