From cd2cc782937f9b0415733c48dcd1d9d8ab19ea48 Mon Sep 17 00:00:00 2001 From: Ian Anderson Date: Tue, 3 Oct 2023 14:51:58 -0700 Subject: [PATCH] Fix the Modules/compiler_builtins.m test Sometimes unwind.h needs uint32_t also. --- clang/test/Modules/Inputs/System/usr/include/stdint.h | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/test/Modules/Inputs/System/usr/include/stdint.h b/clang/test/Modules/Inputs/System/usr/include/stdint.h index e3592fe359a4a..209d54cd411ad 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 */