From 92d75df37c76813ac4a71e35096dcb31ac1b18af Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 3 Oct 2025 15:13:21 -0400 Subject: Disable mpx mode in x86 as its been discontinued since 2019 --- arch/x86/il.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'arch/x86/il.h') diff --git a/arch/x86/il.h b/arch/x86/il.h index 41f41dee..1bef0606 100644 --- a/arch/x86/il.h +++ b/arch/x86/il.h @@ -24,9 +24,10 @@ struct DISASSEMBLY_OPTIONS bool lowerCase; std::string separator; + bool mpx; - DISASSEMBLY_OPTIONS(DISASSEMBLY_FLAVOR_ENUM df = DF_BN_INTEL, bool lowerCase = true, std::string separator = ", ") - : df(df), lowerCase(lowerCase), separator(separator) { }; + DISASSEMBLY_OPTIONS(DISASSEMBLY_FLAVOR_ENUM df = DF_BN_INTEL, bool lowerCase = true, std::string separator = ", ", bool mpx = false) + : df(df), lowerCase(lowerCase), separator(separator), mpx(mpx) { }; }; #define IL_FLAG_C 0 -- cgit v1.3.1