From 80687fc47ac458b0d8ba472e4dd51ffb1aba181e Mon Sep 17 00:00:00 2001 From: kobalicek Date: Mon, 29 Sep 2014 02:52:38 +0200 Subject: [PATCH] Added `kX86Cmp` enum. --- src/asmjit/x86/x86inst.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/asmjit/x86/x86inst.h b/src/asmjit/x86/x86inst.h index be6ceaa..4679e9b 100644 --- a/src/asmjit/x86/x86inst.h +++ b/src/asmjit/x86/x86inst.h @@ -1800,6 +1800,22 @@ ASMJIT_ENUM(kX86FpCw) { kX86FpCw_IC_Affine = 0x1000 }; +// ============================================================================ +// [asmjit::kX86Cmp] +// ============================================================================ + +//! X86/X64 Compare immediate encodings. +ASMJIT_ENUM(kX86Cmp) { + kX86CmpEq = 0, + kX86CmpLt = 1, + kX86CmpLe = 2, + kX86CmpUnordered = 3, + kX86CmpNotEq = 4, + kX86CmpNotLt = 5, + kX86CmpNotLe = 6, + kX86CmpOrdered = 7 +}; + // ============================================================================ // [asmjit::kX86Prefetch] // ============================================================================