Skip to content

Commit fea29ee

Browse files
authored
[libc++][z/OS] Switch to use TEST_HAS_NO_INT128 as per comment in PR 92261 (llvm#92434)
Follow up to llvm#92261.
1 parent 7efafb0 commit fea29ee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/assign.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ int main(int, char**)
8484
test_ext<unsigned int>();
8585
test<unsigned long>();
8686
// This isn't implemented on platforms without __int128
87-
#ifndef _LIBCPP_HAS_NO_INT128
87+
#ifndef TEST_HAS_NO_INT128
8888
test_ext<unsigned long>();
8989
#endif
9090
test<unsigned long long>();
9191
// This isn't implemented on platforms without __int128
92-
#ifndef _LIBCPP_HAS_NO_INT128
92+
#ifndef TEST_HAS_NO_INT128
9393
test_ext<unsigned long long>();
9494
#endif
9595

libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/copy.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ int main(int, char**)
8383
test_ext<unsigned int>();
8484
test<unsigned long>();
8585
// This isn't implemented on platforms without __int128
86-
#ifndef _LIBCPP_HAS_NO_INT128
86+
#ifndef TEST_HAS_NO_INT128
8787
test_ext<unsigned long>();
8888
#endif
8989
test<unsigned long long>();
9090
// This isn't implemented on platforms without __int128
91-
#ifndef _LIBCPP_HAS_NO_INT128
91+
#ifndef TEST_HAS_NO_INT128
9292
test_ext<unsigned long long>();
9393
#endif
9494

0 commit comments

Comments
 (0)