add tests to badSSE
This commit is contained in:
parent
6de93fb884
commit
2bc8fcbd38
1 changed files with 5 additions and 1 deletions
|
@ -28,7 +28,11 @@ CYBOZU_TEST_AUTO(badSSE)
|
||||||
struct Code : Xbyak::CodeGenerator {
|
struct Code : Xbyak::CodeGenerator {
|
||||||
Code()
|
Code()
|
||||||
{
|
{
|
||||||
CYBOZU_TEST_EXCEPTION(paddd(xm16, xm3), Xbyak::Error);
|
CYBOZU_TEST_EXCEPTION(paddd(xm16, xm1), Xbyak::Error);
|
||||||
|
CYBOZU_TEST_EXCEPTION(pslld(xm16, 1), Xbyak::Error);
|
||||||
|
CYBOZU_TEST_EXCEPTION(movapd(xm16, xm1), Xbyak::Error);
|
||||||
|
CYBOZU_TEST_EXCEPTION(movhpd(xm16, ptr[eax]), Xbyak::Error);
|
||||||
|
CYBOZU_TEST_EXCEPTION(pextrb(eax, xm16, 1), Xbyak::Error);
|
||||||
}
|
}
|
||||||
} code;
|
} code;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue