From 37111b28b61ff5ff42873da4866b934ec8e64374 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 29 Oct 2016 23:14:18 +0000 Subject: [PATCH] NativeFormatting.cpp: Fix build for mingw. Where would writePadding() be? git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285509 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/NativeFormatting.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Support/NativeFormatting.cpp b/lib/Support/NativeFormatting.cpp index bbbb1fbbd4b..dbfe658e87c 100644 --- a/lib/Support/NativeFormatting.cpp +++ b/lib/Support/NativeFormatting.cpp @@ -179,7 +179,6 @@ void llvm::write_double(raw_ostream &S, double N, FloatStyle Style, // FIXME: It should be generic to C++11. if (N == 0.0 && std::signbit(N)) { const char *NegativeZero = "-0.000000e+00"; - writePadding(S, Width, strlen(NegativeZero)); S << NegativeZero; return; }