[compiler-rt] r368480 - Fix compilation after SVN r368476

Martin Storsjo via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 9 13:36:00 PDT 2019


Author: mstorsjo
Date: Fri Aug  9 13:36:00 2019
New Revision: 368480

URL: http://llvm.org/viewvc/llvm-project?rev=368480&view=rev
Log:
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

Modified:
    compiler-rt/trunk/lib/builtins/fixunsxfdi.c

Modified: compiler-rt/trunk/lib/builtins/fixunsxfdi.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/builtins/fixunsxfdi.c?rev=368480&r1=368479&r2=368480&view=diff
==============================================================================
--- compiler-rt/trunk/lib/builtins/fixunsxfdi.c (original)
+++ compiler-rt/trunk/lib/builtins/fixunsxfdi.c Fri Aug  9 13:36:00 2019
@@ -46,3 +46,4 @@ COMPILER_RT_ABI du_int __fixunsxfdi(long
 #ifdef _MSC_VER && !defined(__clang__)
 #pragma warning(pop)
 #endif
+#endif




More information about the llvm-commits mailing list