mirror of
https://github.com/herumi/xbyak
synced 2024-11-21 16:09:11 -07:00
fix test of sizeof(Operand)
This commit is contained in:
parent
5b89c3b217
commit
6f93fe3511
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue