fix test of sizeof(Operand)

This commit is contained in:
MITSUNARI Shigeo 2020-06-28 05:49:05 +09:00
parent 5b89c3b217
commit 6f93fe3511

View file

@ -31,7 +31,8 @@ public:
int main()
{
CYBOZU_TEST_EQUAL(sizeof(Xbyak::Operand), 4u);
// the size of Operand exceeds 32 bit.
CYBOZU_TEST_EQUAL(sizeof(Xbyak::Operand), 8u);
Sample s;
s.gen();
ErrorSample es;