aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2022-04-05 14:16:48 +0900
committerMITSUNARI Shigeo <[email protected]>2022-04-05 14:16:48 +0900
commitc68646e8de37ab05969aaaf3af6520a9bdc4cb8d (patch)
tree4abda81a03dd382b0a061fa33e1495112628d575
parent4e8214ca24030dfd4d9061b5aaed0d6b94df2efd (diff)
downloadxbyak-c68646e8de37ab05969aaaf3af6520a9bdc4cb8d.tar.gz
xbyak-c68646e8de37ab05969aaaf3af6520a9bdc4cb8d.zip
remove warning of vc
-rw-r--r--test/misc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/misc.cpp b/test/misc.cpp
index 92227cd..0d28538 100644
--- a/test/misc.cpp
+++ b/test/misc.cpp
@@ -102,8 +102,8 @@ CYBOZU_TEST_AUTO(mov_const)
CYBOZU_TEST_NO_EXCEPTION(mov(rax, ptr[(void*)0x80000000]));
CYBOZU_TEST_NO_EXCEPTION(mov(rax, ptr[(void*)0xffffffff]));
#else
- CYBOZU_TEST_EXCEPTION(mov(rax, ptr[(void*)0x80000000]), Xbyak::Error);
- CYBOZU_TEST_EXCEPTION(mov(rax, ptr[(void*)0xffffffff]), Xbyak::Error);
+ CYBOZU_TEST_EXCEPTION(mov(rax, ptr[(void*)0x80000000ull]), Xbyak::Error);
+ CYBOZU_TEST_EXCEPTION(mov(rax, ptr[(void*)0xffffffffull]), Xbyak::Error);
#endif
#endif
}