summaryrefslogtreecommitdiff
path: root/arch/x86/il.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2025-10-03 15:13:21 -0400
committerPeter LaFosse <peter@vector35.com>2025-10-03 15:41:00 -0400
commit92d75df37c76813ac4a71e35096dcb31ac1b18af (patch)
tree2c2a9ab259ae90a1e2a5a8eb4efb789dc962638d /arch/x86/il.h
parent6e0806b4d18e456ebfb1d1d45b2ccc55713309c8 (diff)
Disable mpx mode in x86 as its been discontinued since 2019
Diffstat (limited to 'arch/x86/il.h')
-rw-r--r--arch/x86/il.h5
1 files changed, 3 insertions, 2 deletions
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