From 7eeb095d37f16279b19decf1a0f8ff80415fd0be Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Thu, 1 Nov 2007 22:51:07 +0000 Subject: [PATCH] Add back line whose removal somehow crept into prior patch llvm-svn: 43627 --- lib/Support/APFloat.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp index 1e1c5ff9f73..88d158ae13a 100644 --- a/lib/Support/APFloat.cpp +++ b/lib/Support/APFloat.cpp @@ -2199,6 +2199,7 @@ APFloat::convertFromDecimalString(const char *p, roundingMode rounding_mode) partCount++; } while (p <= D.lastSigDigit); + category = fcNormal; fs = roundSignificandWithExponent(decSignificand, partCount, D.exponent, rounding_mode);