From 46154e8605aaefdcca5fecf4ea88b92db5a40ad3 Mon Sep 17 00:00:00 2001 From: Rot127 <45763064+Rot127@users.noreply.github.com> Date: Wed, 25 Oct 2023 04:09:08 +0000 Subject: [PATCH] Change RegVal type to 64bit. (#2182) --- MCInst.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCInst.h b/MCInst.h index 8bb935c949..ce0f4634c1 100644 --- a/MCInst.h +++ b/MCInst.h @@ -42,7 +42,7 @@ struct MCOperand { unsigned char Kind; union { - unsigned RegVal; + uint64_t RegVal; int64_t ImmVal; double FPImmVal; };