Deleted Added
full compact
APFloat.h (204642) APFloat.h (204961)
1//== llvm/Support/APFloat.h - Arbitrary Precision Floating Point -*- C++ -*-==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 330 unchanged lines hidden (view full) ---

339 /// 1.01E+4 5 2 10100
340 /// 1.01E+4 4 2 1.01E+4
341 /// 1.01E+4 5 1 1.01E+4
342 /// 1.01E-2 5 2 0.0101
343 /// 1.01E-2 4 2 0.0101
344 /// 1.01E-2 4 1 1.01E-2
345 void toString(SmallVectorImpl<char> &Str,
346 unsigned FormatPrecision = 0,
1//== llvm/Support/APFloat.h - Arbitrary Precision Floating Point -*- C++ -*-==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 330 unchanged lines hidden (view full) ---

339 /// 1.01E+4 5 2 10100
340 /// 1.01E+4 4 2 1.01E+4
341 /// 1.01E+4 5 1 1.01E+4
342 /// 1.01E-2 5 2 0.0101
343 /// 1.01E-2 4 2 0.0101
344 /// 1.01E-2 4 1 1.01E-2
345 void toString(SmallVectorImpl<char> &Str,
346 unsigned FormatPrecision = 0,
347 unsigned FormatMaxPadding = 3);
347 unsigned FormatMaxPadding = 3) const;
348
349 private:
350
351 /* Trivial queries. */
352 integerPart *significandParts();
353 const integerPart *significandParts() const;
354 unsigned int partCount() const;
355

--- 90 unchanged lines hidden ---
348
349 private:
350
351 /* Trivial queries. */
352 integerPart *significandParts();
353 const integerPart *significandParts() const;
354 unsigned int partCount() const;
355

--- 90 unchanged lines hidden ---