From 575694b6a7d49004acc93294bc88d0bc337e4d27 Mon Sep 17 00:00:00 2001 From: Michael Gottesman Date: Mon, 24 Jun 2013 09:58:05 +0000 Subject: [APFloat] Added support for parsing float strings which contain {inf,-inf,NaN,-NaN}. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184713 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/APFloat.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/llvm/ADT') diff --git a/include/llvm/ADT/APFloat.h b/include/llvm/ADT/APFloat.h index 3d4a632..7e71dd3 100644 --- a/include/llvm/ADT/APFloat.h +++ b/include/llvm/ADT/APFloat.h @@ -510,6 +510,7 @@ private: /// \name Miscellany /// @{ + bool convertFromStringSpecials(StringRef str); opStatus normalize(roundingMode, lostFraction); opStatus addOrSubtract(const APFloat &, roundingMode, bool subtract); cmpResult compareAbsoluteValue(const APFloat &) const; -- cgit v1.1