diff options
author | MITSUNARI Shigeo <[email protected]> | 2020-09-08 15:14:18 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2020-09-08 15:14:18 +0900 |
commit | bb967ae752b3c6e9bce3b7d685d100e032eee8e3 (patch) | |
tree | 3c01c07fda3bbf5980bdbea1bf1c0febe2b435c5 /test/sf_test.cpp | |
parent | c306b8e5786eeeb87b8925a8af5c3bf057ff5a90 (diff) | |
download | xbyak-bb967ae752b3c6e9bce3b7d685d100e032eee8e3.tar.gz xbyak-bb967ae752b3c6e9bce3b7d685d100e032eee8e3.zip |
replace uint32 with uint32_t etc.
Diffstat (limited to 'test/sf_test.cpp')
-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 286ecd1..038b3f0 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 *f, int pNum) +void verify(const Xbyak::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 *f = code.getCurr(); + const Xbyak::uint8_t *f = code.getCurr(); code.gen(pNum, tNum | opt, stackSize); verify(f, pNum); /* |