[Openmp-commits] [PATCH] D92027: [OpenMP] libomp: fix non-X86 non-AARCH64 builds

Andrey Churbanov via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Wed Nov 25 09:41:00 PST 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG9e3e332d273b: [OpenMP] libomp: fix non-X86, non-AARCH64 builds (authored by AndreyChurbanov).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D92027/new/

https://reviews.llvm.org/D92027

Files:
  openmp/runtime/src/z_Linux_asm.S


Index: openmp/runtime/src/z_Linux_asm.S
===================================================================
--- openmp/runtime/src/z_Linux_asm.S
+++ openmp/runtime/src/z_Linux_asm.S
@@ -1737,6 +1737,9 @@
 #endif /* KMP_ARCH_ARM */
 
 #if KMP_ARCH_PPC64 || KMP_ARCH_AARCH64 || KMP_ARCH_MIPS64 || KMP_ARCH_RISCV64
+#ifndef KMP_PREFIX_UNDERSCORE
+# define KMP_PREFIX_UNDERSCORE(x) x
+#endif
     .data
     .comm .gomp_critical_user_,32,8
     .data


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D92027.307643.patch
Type: text/x-patch
Size: 447 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20201125/d1faa5c0/attachment.bin>


More information about the Openmp-commits mailing list