File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,10 @@ int main(int, char**)
83
83
test<unsigned int >();
84
84
test_ext<unsigned int >();
85
85
test<unsigned long >();
86
+ // This isn't implemented on platforms without __int128
87
+ #ifndef _LIBCPP_HAS_NO_INT128
86
88
test_ext<unsigned long >();
89
+ #endif
87
90
test<unsigned long long >();
88
91
// This isn't implemented on platforms without __int128
89
92
#ifndef _LIBCPP_HAS_NO_INT128
Original file line number Diff line number Diff line change @@ -82,7 +82,10 @@ int main(int, char**)
82
82
test<unsigned int >();
83
83
test_ext<unsigned int >();
84
84
test<unsigned long >();
85
+ // This isn't implemented on platforms without __int128
86
+ #ifndef _LIBCPP_HAS_NO_INT128
85
87
test_ext<unsigned long >();
88
+ #endif
86
89
test<unsigned long long >();
87
90
// This isn't implemented on platforms without __int128
88
91
#ifndef _LIBCPP_HAS_NO_INT128
You can’t perform that action at this time.
0 commit comments