qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 04/39] target/riscv: Add vclmulh.vv decoding, translation and


From: Richard Henderson
Subject: Re: [PATCH 04/39] target/riscv: Add vclmulh.vv decoding, translation and execution support
Date: Thu, 2 Feb 2023 06:54:14 -1000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2

On 2/2/23 02:41, Lawrence Hunter wrote:
+static void do_vclmulh_vv(void *vd, void *vs1, void *vs2, int i)
+{
+    __uint128_t result = 0;

In passing, you may not use __uint128_t directly, as it is not supported on all hosts. Philipp has given you good advice on adjusting the computation.


r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]