Fix an uninitialized value warning in APFloat.
[oota-llvm.git] / lib / Support / APFloat.cpp
2009-08-18 Erick TryzelaarFix an uninitialized value warning in APFloat.
2009-08-16 Erick TryzelaarModify APFloat to take a StringRef instead of a c string.
2009-07-14 Torok Edwinllvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE...
2009-07-11 Torok Edwinassert(0) -> LLVM_UNREACHABLE.
2009-05-30 Mike StumpAdd support for letting the client choose different...
2009-05-13 Mike StumpFix whitespacing (space after switch).
2009-03-23 Dale JohannesenFix internal representation of fp80 to be the
2009-03-13 Chris Lattnerjust initialize the first element, we don't need to...
2009-03-13 Chris LattnerEliminate a 9640 byte static mutable initialized data...
2009-03-12 Chris Lattnerstatic functions don't need an anonymous namespace.
2009-02-14 Cedric VenetUnbreak the build on win32.
2009-01-21 Dale JohannesenDo not use host floating point types when emitting
2009-01-21 Dale JohannesenMake special cases (0 inf nan) work for frem.
2009-01-20 Dale JohannesenAdd an IEEE remainder function, which is not
2009-01-19 Dale Johannesencompile-time fmod was done incorrectly. PR 3316.
2008-11-27 Bill WendlingGet rid of bogus "control may reach end of non-void...
2008-11-26 Evan ChengRevert r60042. IndVarSimplify should check if APFloat...
2008-11-25 Evan ChengconvertToSignExtendedInteger should return opInvalidOp...
2008-10-09 Dale JohannesenAdd a "loses information" return value to APFloat:...
2008-10-09 Dale JohannesenRename APFloat::convertToAPInt to bitcastToAPInt to
2008-10-07 Dale JohannesenMark negative-zero-to-int conversion as Inexact,
2008-10-06 Dale JohannesenBe more precise about which conversions of NaNs
2008-10-06 Dale JohannesenTemporarily revert functionality change from my previou...
2008-10-06 Dale JohannesenMark shortening NaN conversions as Inexact. PR 2856.
2008-08-17 Chris LattnerRework the routines that convert AP[S]Int into a string...
2008-08-17 Chris Lattnerremove a dead APInt ctor.
2008-05-14 Dale JohannesenDon't assume underlying APInt type is limited
2008-05-14 Dale JohannesenRemove undefined behavior in hex string->APFloat
2008-05-12 Dan GohmanMake firstEightPowers const.
2008-05-02 Evan ChengSuppress -Wshorten-64-to-32 warnings for 64-bit hosts.
2008-04-20 Dale JohannesenCheck that APFloat::convert is not trying to target
2008-04-10 Dan GohmanMake several symbols static.
2008-02-29 Dan GohmanAdd a method to APFloat to convert directly from APInt.
2008-02-11 Ted KremenekAdded "Profile" method to APFloat for use with FoldingSet.
2008-01-31 Dale JohannesenChris' change to print an approximation to long doubles
2008-01-29 Dan GohmanRemove top-level const qualifiers from casts, avoiding...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-12-08 Chris Lattnerproper #include order.
2007-12-05 Neil BoothPrior commit updated wrong if, apologies.
2007-12-05 Neil BoothHandle zero correctly.
2007-12-05 Dale JohannesenHandle 0 correctly in string->APFloat conversion.
2007-11-17 Dale JohannesenFix denormal check in float->APInt conversion.
2007-11-02 Neil BoothRemove some unnecessary C-style statics.
2007-11-01 Neil BoothAdd back line whose removal somehow crept into prior...
2007-11-01 Neil BoothWhen converting to integer, do bit manipulations in...
2007-10-25 Hartmut KaiserClarified operator precedence.
2007-10-15 Neil BoothFast-track obviously over-large and over-small exponent...
2007-10-14 Neil BoothConsolidate logic for creating NaNs. Silence compiler...
2007-10-14 Neil BoothWhether arithmetic is supported is a property of the...
2007-10-14 Neil BoothSeparate out parsing of decimal number. Use this to...
2007-10-13 Neil BoothIf the power of 5 is exact, and the reciprocal exact...
2007-10-12 Neil BoothRemove duplicate comment.
2007-10-12 Neil BoothImplement correctly-rounded decimal->binary conversion...
2007-10-12 Neil BoothRemove a field that was never used.
2007-10-12 Neil BoothIf we're trying to be arbitrary precision, unsigned...
2007-10-11 Dale JohannesenNext PPC long double bits. First cut at constants.
2007-10-08 Neil BoothUse APInt::tcExtract. It's cleaner, and works :)
2007-10-07 Neil BoothAdd back convertFromSignExtendedInteger.
2007-10-07 Neil BoothNow that convertFromUnsignedParts has a sane, constant...
2007-10-07 Neil BoothReimplement convertFromUnsignedInteger so it is passed...
2007-10-07 Neil BoothconvertFromInteger, as originally written, expected...
2007-10-07 Neil BoothcombineLostFractions does not need to be a member function
2007-10-06 Neil BoothCleaner, more general exponent output.
2007-10-06 Chris Lattnersilence warnings in no-assert build.
2007-10-06 Neil BoothGeneralize tcFullMultiply so that the operands can...
2007-10-03 Neil BoothAdd APFloat -> hexadecimal string conversion, as per...
2007-10-03 Neil BoothTweak RoundAwayFromZero the bit number below which...
2007-09-30 Dale JohannesenSimplify and fix signed int -> FP conversions.
2007-09-26 Neil BoothWhitespace and compiler warning cleanup.
2007-09-25 Dale JohannesenMake APFloat->int conversions deterministic even in
2007-09-25 Dale JohannesenFix long double<->shorter FP type conversions
2007-09-22 Neil BoothHandle storage complications of float->float conversions.
2007-09-21 Dale JohannesenChange APFloat::convertFromInteger to take the incoming
2007-09-20 Dale JohannesenFix PR 1688. See comments there.
2007-09-14 Dan GohmanRemove spurious consts. This fixes warnings with compil...
2007-09-12 Dale JohannesenCompensate for partCount change in Bogus definition
2007-09-11 Dale JohannesenAdd APInt interfaces to APFloat (allows directly
2007-09-05 Dale JohannesenFix mod so it actually works. Fix conversions to
2007-08-31 Dale JohannesenOops, should be part of 41664; won't work very well...
2007-08-31 Dale JohannesenEnhance APFloat to retain bits of NaNs (fixes oggenc).
2007-08-30 Dale JohannesenChange LegalFPImmediates to use APFloat.
2007-08-24 Dale JohannesenPoison APFloat::operator==. Replace existing uses...
2007-08-24 Dale JohannesenRevised per review feedback from previous patch.
2007-08-24 Chris Lattnersilence some warnings in an optimized build.
2007-08-24 Dale JohannesenChange internal representation of ConstantFP to use...
2007-08-20 Chris Lattnerinitial checkin of Neil's APFloat work.