[clang] b855ae9 - Fix the Modules/compiler_builtins.m test (#68163)

via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 3 15:58:44 PDT 2023


Author: Ian Anderson
Date: 2023-10-03T15:58:38-07:00
New Revision: b855ae99036085267b4f7482f996c7d83d0d2983

URL: https://github.com/llvm/llvm-project/commit/b855ae99036085267b4f7482f996c7d83d0d2983
DIFF: https://github.com/llvm/llvm-project/commit/b855ae99036085267b4f7482f996c7d83d0d2983.diff

LOG: Fix the Modules/compiler_builtins.m test (#68163)

Sometimes unwind.h needs uint32_t also.

Added: 
    

Modified: 
    clang/test/Modules/Inputs/System/usr/include/stdint.h

Removed: 
    


################################################################################
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 */


        


More information about the cfe-commits mailing list