[Openmp-commits] [llvm] [openmp] [OpenMP][OMPX] Add ballot_sync (PR #91297)
Joseph Huber via Openmp-commits
openmp-commits at lists.llvm.org
Thu May 23 08:10:40 PDT 2024
================
@@ -9,6 +9,8 @@
#ifndef __OMPX_H
#define __OMPX_H
+typedef unsigned long uint64_t;
+
----------------
jhuber6 wrote:
I wish we could just include `stdint.h` here, but we'd need to make sure it only uses the one in the `clang` resource directory. That's doable if we don't set `__STDC_HOSTED__` or use `-ffreestanding`. Using `-ffreestanding` would be an option if I could fix the bug that prevents me from landing the fixes that allow inlining.
https://github.com/llvm/llvm-project/pull/91297
More information about the Openmp-commits
mailing list