[clang] Fix the Modules/compiler_builtins.m test (PR #68163)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 3 15:01:42 PDT 2023
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang-modules
<details>
<summary>Changes</summary>
Sometimes unwind.h needs uint32_t also.
---
Full diff: https://github.com/llvm/llvm-project/pull/68163.diff
1 Files Affected:
- (modified) clang/test/Modules/Inputs/System/usr/include/stdint.h (+1)
``````````diff
diff --git a/clang/test/Modules/Inputs/System/usr/include/stdint.h b/clang/test/Modules/Inputs/System/usr/include/stdint.h
index e3592fe359a4a32..209d54cd411ad55 100644
--- a/clang/test/Modules/Inputs/System/usr/include/stdint.h
+++ b/clang/test/Modules/Inputs/System/usr/include/stdint.h
@@ -30,6 +30,7 @@ typedef unsigned int uintmax_t;
// additional types for unwind.h
+typedef unsigned int uint32_t;
typedef unsigned long long uint64_t;
#endif /* STDINT_H */
``````````
</details>
https://github.com/llvm/llvm-project/pull/68163
More information about the cfe-commits
mailing list