Using upstream xbyak movbe.

This commit is contained in:
Ben Vanik
2015-06-15 20:44:13 -07:00
parent 2a6ada2a3c
commit 51eeb4f039
2 changed files with 4 additions and 1 deletions

View File

@@ -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::tF16C) ? kX64EmitF16C : 0;
}
// Need movbe.
assert_true(cpu_.has(Xbyak::util::Cpu::tMOVBE));
}
X64Emitter::~X64Emitter() = default;