diff options
author | Michael Tokarev <mjt@tls.msk.ru> | 2023-07-14 14:20:07 +0300 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2023-07-25 17:13:45 +0300 |
commit | cced0d653973f6ad0d9e8bdbd365e12d0f2316f9 (patch) | |
tree | 10c4af52642079501a470e56fd26646ceb15f9ce /target/s390x/tcg | |
parent | d8b71d96b336054ac3cd0c9351b0cb75c47281ad (diff) |
s390x: spelling fixes
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'target/s390x/tcg')
-rw-r--r-- | target/s390x/tcg/fpu_helper.c | 2 | ||||
-rw-r--r-- | target/s390x/tcg/insn-data.h.inc | 2 | ||||
-rw-r--r-- | target/s390x/tcg/translate.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/target/s390x/tcg/fpu_helper.c b/target/s390x/tcg/fpu_helper.c index 3d941ed2d2..c329b31261 100644 --- a/target/s390x/tcg/fpu_helper.c +++ b/target/s390x/tcg/fpu_helper.c @@ -87,7 +87,7 @@ static void handle_exceptions(CPUS390XState *env, bool XxC, uintptr_t retaddr) /* * FIXME: - * 1. Right now, all inexact conditions are inidicated as + * 1. Right now, all inexact conditions are indicated as * "truncated" (0) and never as "incremented" (1) in the DXC. * 2. Only traps due to invalid/divbyzero are suppressing. Other traps * are completing, meaning the target register has to be written! diff --git a/target/s390x/tcg/insn-data.h.inc b/target/s390x/tcg/insn-data.h.inc index 86a509b0ac..0bfd88d3c3 100644 --- a/target/s390x/tcg/insn-data.h.inc +++ b/target/s390x/tcg/insn-data.h.inc @@ -529,7 +529,7 @@ /* LOAD LOGICAL HALFWORD RELATIVE LONG */ C(0xc402, LLHRL, RIL_b, GIE, 0, ri2, new, r1_32, ld16u, 0) C(0xc406, LLGHRL, RIL_b, GIE, 0, ri2, r1, 0, ld16u, 0) -/* LOAD LOGICAL IMMEDATE */ +/* LOAD LOGICAL IMMEDIATE */ D(0xc00e, LLIHF, RIL_a, EI, 0, i2_32u_shl, 0, r1, mov2, 0, 32) D(0xc00f, LLILF, RIL_a, EI, 0, i2_32u_shl, 0, r1, mov2, 0, 0) D(0xa50c, LLIHH, RI_a, Z, 0, i2_16u_shl, 0, r1, mov2, 0, 48) diff --git a/target/s390x/tcg/translate.c b/target/s390x/tcg/translate.c index 84d76f1cea..dc7041e1d8 100644 --- a/target/s390x/tcg/translate.c +++ b/target/s390x/tcg/translate.c @@ -429,7 +429,7 @@ static void gen_exception(int excp) static void gen_program_exception(DisasContext *s, int code) { - /* Remember what pgm exeption this was. */ + /* Remember what pgm exception this was. */ tcg_gen_st_i32(tcg_constant_i32(code), cpu_env, offsetof(CPUS390XState, int_pgm_code)); |