diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2007-11-01 22:51:07 +0000 |
---|---|---|
committer | Neil Booth <neil@daikokuya.co.uk> | 2007-11-01 22:51:07 +0000 |
commit | ae077d232c90fe2a6e5352bcb9cd32b9a07a1668 (patch) | |
tree | b1448a8303b0bf96b4f3fb955a1cb09aefe271ef /llvm/lib/Support | |
parent | 618d0fc3771add2b53040ef4de5f7bcc247dee13 (diff) | |
download | bcm5719-llvm-ae077d232c90fe2a6e5352bcb9cd32b9a07a1668.tar.gz bcm5719-llvm-ae077d232c90fe2a6e5352bcb9cd32b9a07a1668.zip |
Add back line whose removal somehow crept into prior patch
llvm-svn: 43627
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/APFloat.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/APFloat.cpp b/llvm/lib/Support/APFloat.cpp index 1e1c5ff9f73..88d158ae13a 100644 --- a/llvm/lib/Support/APFloat.cpp +++ b/llvm/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); |