diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-08-12 19:57:17 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-12 19:57:17 +0000 |
commit | d2e493c3378b4b61e16109c67568f5d642f3c3a1 (patch) | |
tree | f8d1c02772d3f6a597289310f93d7431165b52da | |
parent | d9bc9c81611705c121135fb7449ebcbba74fae33 (diff) | |
download | bcm5719-llvm-d2e493c3378b4b61e16109c67568f5d642f3c3a1.tar.gz bcm5719-llvm-d2e493c3378b4b61e16109c67568f5d642f3c3a1.zip |
Fix Wnewline-eof after r368598
llvm-svn: 368613
-rw-r--r-- | compiler-rt/lib/builtins/fixunsxfdi.c | 2 | ||||
-rw-r--r-- | compiler-rt/lib/builtins/udivmoddi4.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/builtins/fixunsxfdi.c b/compiler-rt/lib/builtins/fixunsxfdi.c index 852a6644eb8..097a4e55e93 100644 --- a/compiler-rt/lib/builtins/fixunsxfdi.c +++ b/compiler-rt/lib/builtins/fixunsxfdi.c @@ -47,4 +47,4 @@ COMPILER_RT_ABI du_int __fixunsxfdi(long double a) { #pragma warning(pop) #endif -#endif //!_ARCH_PPC
\ No newline at end of file +#endif //!_ARCH_PPC diff --git a/compiler-rt/lib/builtins/udivmoddi4.c b/compiler-rt/lib/builtins/udivmoddi4.c index 4db9be9b16d..5b297c32d79 100644 --- a/compiler-rt/lib/builtins/udivmoddi4.c +++ b/compiler-rt/lib/builtins/udivmoddi4.c @@ -197,4 +197,4 @@ COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int *rem) { #if defined(_MSC_VER) && !defined(__clang__) #pragma warning(pop) -#endif
\ No newline at end of file +#endif |