[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 01/19] target/ppc: Remove extra space from s128 field in ppc_vsr_
From: |
Víctor Colombo |
Subject: |
[PATCH 01/19] target/ppc: Remove extra space from s128 field in ppc_vsr_t |
Date: |
Thu, 1 Sep 2022 10:17:38 -0300 |
Very trivial rogue space removal. There are two spaces between Int128
and s128 in ppc_vsr_t struct, where it should be only one.
Signed-off-by: Víctor Colombo <victor.colombo@eldorado.org.br>
---
target/ppc/cpu.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h
index a4c893cfad..985ff86f55 100644
--- a/target/ppc/cpu.h
+++ b/target/ppc/cpu.h
@@ -246,7 +246,7 @@ typedef union _ppc_vsr_t {
#ifdef CONFIG_INT128
__uint128_t u128;
#endif
- Int128 s128;
+ Int128 s128;
} ppc_vsr_t;
typedef ppc_vsr_t ppc_avr_t;
--
2.25.1
- [PATCH 00/19] Multiple ppc instructions fixes, Víctor Colombo, 2022/09/01
- [PATCH 01/19] target/ppc: Remove extra space from s128 field in ppc_vsr_t,
Víctor Colombo <=
- [PATCH 02/19] target/ppc: Remove unused xer_* macros, Víctor Colombo, 2022/09/01
- [PATCH 03/19] target/ppc: Zero second doubleword in DFP instructions, Víctor Colombo, 2022/09/01
- [PATCH 05/19] target/ppc: Zero second doubleword for VSX madd instructions, Víctor Colombo, 2022/09/01
- [PATCH 04/19] target/ppc: Set result to QNaN for DENBCD when VXCVI occurs, Víctor Colombo, 2022/09/01
- [PATCH 06/19] target/ppc: Set OV32 when OV is set, Víctor Colombo, 2022/09/01