mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-23 18:38:30 +08:00
Fix two of the three bot failures for midpoint; the ones regarding the lack of '__int128_t'
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@356169 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -41,7 +41,6 @@ int main(int, char**)
|
||||
test<int16_t>();
|
||||
test<int32_t>();
|
||||
test<int64_t>();
|
||||
test<__int128_t>();
|
||||
|
||||
test<unsigned char>();
|
||||
test<unsigned short>();
|
||||
@@ -53,7 +52,11 @@ int main(int, char**)
|
||||
test<uint16_t>();
|
||||
test<uint32_t>();
|
||||
test<uint64_t>();
|
||||
|
||||
#ifndef _LIBCPP_HAS_NO_INT128
|
||||
test<__int128_t>();
|
||||
test<__uint128_t>();
|
||||
#endif
|
||||
|
||||
test<char>();
|
||||
test<ptrdiff_t>();
|
||||
|
@@ -115,7 +115,6 @@ int main(int, char**)
|
||||
signed_test<int16_t>();
|
||||
signed_test<int32_t>();
|
||||
signed_test<int64_t>();
|
||||
signed_test<__int128_t>();
|
||||
|
||||
unsigned_test<unsigned char>();
|
||||
unsigned_test<unsigned short>();
|
||||
@@ -127,7 +126,11 @@ int main(int, char**)
|
||||
unsigned_test<uint16_t>();
|
||||
unsigned_test<uint32_t>();
|
||||
unsigned_test<uint64_t>();
|
||||
|
||||
#ifndef _LIBCPP_HAS_NO_INT128
|
||||
unsigned_test<__uint128_t>();
|
||||
signed_test<__int128_t>();
|
||||
#endif
|
||||
|
||||
// int_test<char>();
|
||||
signed_test<ptrdiff_t>();
|
||||
|
Reference in New Issue
Block a user