diff options
| author | Martin Storsjo <martin@martin.st> | 2019-08-09 20:36:00 +0000 |
|---|---|---|
| committer | Martin Storsjo <martin@martin.st> | 2019-08-09 20:36:00 +0000 |
| commit | 96a2b25bcb6eff1f8a5b406dbeba88c9b579c3ef (patch) | |
| tree | cff341c0519d2efe4a9a68903c6b4753d878f566 | |
| parent | 6cb05ca04444061616bae1897cdba1655ef77c19 (diff) | |
| download | bcm5719-llvm-96a2b25bcb6eff1f8a5b406dbeba88c9b579c3ef.tar.gz bcm5719-llvm-96a2b25bcb6eff1f8a5b406dbeba88c9b579c3ef.zip | |
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
| -rw-r--r-- | compiler-rt/lib/builtins/fixunsxfdi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/lib/builtins/fixunsxfdi.c b/compiler-rt/lib/builtins/fixunsxfdi.c index 4db18d58f50..d6b9e9904d0 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 |

