From e47a388bd6486d0af7066f1d8b033a13d0ffc7df Mon Sep 17 00:00:00 2001 From: Jessica Clarke Date: Wed, 27 Jan 2021 19:44:01 +0000 Subject: [PATCH] [builtins] Fix build after D95537 due to missing size_t Strangely int_lib.h only includes stdint.h and not stddef.h, so we need to include the latter to be able to use size_t here. --- compiler-rt/lib/builtins/gcc_personality_v0.c | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/lib/builtins/gcc_personality_v0.c b/compiler-rt/lib/builtins/gcc_personality_v0.c index 9fb1ce0..cecbce1 100644 --- a/compiler-rt/lib/builtins/gcc_personality_v0.c +++ b/compiler-rt/lib/builtins/gcc_personality_v0.c @@ -7,6 +7,7 @@ //===----------------------------------------------------------------------===// #include "int_lib.h" +#include #include #if defined(__arm__) && !defined(__ARM_DWARF_EH__) && \ -- 2.7.4