Using upstream xbyak movbe.
This commit is contained in:
parent
2a6ada2a3c
commit
51eeb4f039
|
@ -88,6 +88,9 @@ X64Emitter::X64Emitter(X64Backend* backend, XbyakAllocator* allocator)
|
||||||
feature_flags_ |= cpu_.has(Xbyak::util::Cpu::tBMI2) ? kX64EmitBMI2 : 0;
|
feature_flags_ |= cpu_.has(Xbyak::util::Cpu::tBMI2) ? kX64EmitBMI2 : 0;
|
||||||
feature_flags_ |= cpu_.has(Xbyak::util::Cpu::tF16C) ? kX64EmitF16C : 0;
|
feature_flags_ |= cpu_.has(Xbyak::util::Cpu::tF16C) ? kX64EmitF16C : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Need movbe.
|
||||||
|
assert_true(cpu_.has(Xbyak::util::Cpu::tMOVBE));
|
||||||
}
|
}
|
||||||
|
|
||||||
X64Emitter::~X64Emitter() = default;
|
X64Emitter::~X64Emitter() = default;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 77a774de97741027a90b12fd70c6d7ac0c20a431
|
Subproject commit 4431caffbb0dec5a6d8538fff67a4a875953e1ab
|
Loading…
Reference in New Issue