From 96a2b25bcb6eff1f8a5b406dbeba88c9b579c3ef Mon Sep 17 00:00:00 2001 From: Martin Storsjo Date: Fri, 9 Aug 2019 20:36:00 +0000 Subject: [PATCH] Fix compilation after SVN r368476 That revision broke compilation with this error: lib/builtins/fixunsxfdi.c:13:2: error: unterminated conditional directive #if !_ARCH_PPC llvm-svn: 368480 --- compiler-rt/lib/builtins/fixunsxfdi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/lib/builtins/fixunsxfdi.c b/compiler-rt/lib/builtins/fixunsxfdi.c index 4db18d5..d6b9e990 100644 --- a/compiler-rt/lib/builtins/fixunsxfdi.c +++ b/compiler-rt/lib/builtins/fixunsxfdi.c @@ -46,3 +46,4 @@ COMPILER_RT_ABI du_int __fixunsxfdi(long double a) { #ifdef _MSC_VER && !defined(__clang__) #pragma warning(pop) #endif +#endif -- 2.7.4