From: Florian K. <fk...@so...> - 2025-06-21 14:25:10
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=3bae961d3fc5c506bbf2e1210ec2fb366eb46f30 commit 3bae961d3fc5c506bbf2e1210ec2fb366eb46f30 Author: Florian Krohm <fl...@ei...> Date: Sat Jun 21 14:11:47 2025 +0000 libvex_ir.h: Fix comment for Iop_DivModU128to64 This IROp uses an I128 dividend and produces an I128 result. Cf. function typeOfPrimop and IR generation for amd64 and s390. Diff: --- VEX/pub/libvex_ir.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VEX/pub/libvex_ir.h b/VEX/pub/libvex_ir.h index 80ef8f27a4..803a1317ed 100644 --- a/VEX/pub/libvex_ir.h +++ b/VEX/pub/libvex_ir.h @@ -521,7 +521,7 @@ typedef // of which lo half is div and hi half is mod Iop_DivModS64to32, // ditto, signed - Iop_DivModU128to64, // :: V128,I64 -> V128 + Iop_DivModU128to64, // :: I128,I64 -> I128 // of which lo half is div and hi half is mod Iop_DivModS128to64, // ditto, signed |