Skip to content

[OpenMP] [test] Skip the -mlong-double-80 test on MSVC ABI #81115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openmp/runtime/test/atomic/kmp_atomic_float10_max_min.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ extern long double __kmpc_atomic_float10_min_cpt(ident_t *id_ref, int gtid,

int main() {
int ret = 0;
#if KMP_ARCH_X86 || KMP_ARCH_X86_64
#if (KMP_ARCH_X86 || KMP_ARCH_X86_64) && !defined(_MSC_VER)
long double s = 012.3456; // small
long double e = 123.4567; // middle
long double d = 234.5678; // big
Expand Down Expand Up @@ -158,6 +158,6 @@ int main() {
printf("passed\n");
#else
printf("Unsupported architecture, skipping test...\n");
#endif // KMP_ARCH_X86 || KMP_ARCH_X86_64
#endif // (KMP_ARCH_X86 || KMP_ARCH_X86_64) && !defined(_MSC_VER)
return ret;
}