diff options
author | MITSUNARI Shigeo <[email protected]> | 2021-10-05 14:00:05 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2021-10-05 14:00:05 +0900 |
commit | 894a1b14a70c60c9c4a4282ab46c72ab75f58e5e (patch) | |
tree | d39f5ceec055193506ec07daff0059a72402b4df /test | |
parent | dfc079ca1373a520f2cd8b685d4e73aed481ad23 (diff) | |
download | xbyak-894a1b14a70c60c9c4a4282ab46c72ab75f58e5e.tar.gz xbyak-894a1b14a70c60c9c4a4282ab46c72ab75f58e5e.zip |
use original uint8_t
Diffstat (limited to 'test')
-rw-r--r-- | test/sf_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sf_test.cpp b/test/sf_test.cpp index 038b3f0..4ae156c 100644 --- a/test/sf_test.cpp +++ b/test/sf_test.cpp @@ -218,7 +218,7 @@ void check(int x, int y) } } -void verify(const Xbyak::uint8_t *f, int pNum) +void verify(const uint8_t *f, int pNum) { switch (pNum) { case 0: @@ -264,7 +264,7 @@ void testAll() } for (int tNum = 0; tNum < maxNum; tNum++) { // printf("pNum=%d, tNum=%d, stackSize=%d\n", pNum, tNum | opt, stackSize); - const Xbyak::uint8_t *f = code.getCurr(); + const uint8_t *f = code.getCurr(); code.gen(pNum, tNum | opt, stackSize); verify(f, pNum); /* |