add baseSSE test

This commit is contained in:
MITSUNARI Shigeo 2022-03-08 11:33:35 +09:00
parent e2eda384c8
commit 6de93fb884
2 changed files with 11 additions and 1 deletions

View file

@ -23,6 +23,16 @@ CYBOZU_TEST_AUTO(setSize)
} code;
}
CYBOZU_TEST_AUTO(badSSE)
{
struct Code : Xbyak::CodeGenerator {
Code()
{
CYBOZU_TEST_EXCEPTION(paddd(xm16, xm3), Xbyak::Error);
}
} code;
}
CYBOZU_TEST_AUTO(compOperand)
{
using namespace Xbyak::util;