aboutsummaryrefslogtreecommitdiff
path: root/lib/Support
AgeCommit message (Expand)Author
2008-02-23Fix a bug that caused opt and other tools to silently ignoreDan Gohman
2008-02-20Add explicit keywords.Dan Gohman
2008-02-20Add 'sink' cmdline option. Patch by Mikhail Glushenkov!Anton Korobeynikov
2008-02-20Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov
2008-02-19Fixed bug in APInt::Profile() where the BitWidth field was not included in theTed Kremenek
2008-02-15Fixed bug in FoldingSetIteratorImpl where we did not correctly check ifTed Kremenek
2008-02-14Fix a warning about comparison between signed and unsigned,Dan Gohman
2008-02-13Add countTrailingOnes member functions to APInt.Dan Gohman
2008-02-11Added "Profile" method to APFloat for use with FoldingSet.Ted Kremenek
2008-02-06Add support to FoldingSet for hashing APInt objects.Dan Gohman
2008-02-04Added "bucket_iterators" to FoldingSet. Bucket iterators allow iterationTed Kremenek
2008-02-04Fixed 80 col. violation.Ted Kremenek
2008-01-31Chris' change to print an approximation to long doublesDale Johannesen
2008-01-29Remove top-level const qualifiers from casts, avoiding associatedDan Gohman
2008-01-28Simplify the code and fix a typo.Lauro Ramos Venancio
2008-01-28Fix fpcmp infinite loop when comparing "29-266" with "29-268".Lauro Ramos Venancio
2008-01-19Added FoldingSet style 'profiling' support for APSInt.Ted Kremenek
2008-01-19Added FoldingSet style 'profiling' support for APInt.Ted Kremenek
2008-01-19Made 'FoldingSetNodeID' a proper class instead of a nested class inTed Kremenek
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-29remove attribution from lib Makefiles.Chris Lattner
2007-12-24Cygwin defines uint32_t as unsigned long. Unbreak call to std::min in this caseAnton Korobeynikov
2007-12-11Don't have APInt.cpp depend upon DerivedTypes.h. This helps with splitting theReid Spencer
2007-12-08proper #include order.Chris Lattner
2007-12-08Adding a StringPool data structure, which GC will use.Gordon Henriksen
2007-12-05Prior commit updated wrong if, apologies.Neil Booth
2007-12-05Handle zero correctly.Neil Booth
2007-12-05Handle 0 correctly in string->APFloat conversion.Dale Johannesen
2007-11-23Fix PR1816, by correcting the broken definition of APInt::countTrailingZeros.Chris Lattner
2007-11-23Fix APInt::countTrailingZeros to return BitWidth if the input is zero instead...Chris Lattner
2007-11-18Fix the Linker testcase regressions, by making MemoryBuffer::getFileOrSTDIN r...Chris Lattner
2007-11-17Fix denormal check in float->APInt conversion.Dale Johannesen
2007-11-06make smallptrset more const and type correct, which caught a fewChris Lattner
2007-11-02Remove some unnecessary C-style statics.Neil Booth
2007-11-01Add back line whose removal somehow crept into prior patchNeil Booth
2007-11-01When converting to integer, do bit manipulations in the destinationNeil Booth
2007-10-25Clarified operator precedence.Hartmut Kaiser
2007-10-18This requires rtti info because tblgen uses commandline,Chris Lattner
2007-10-15Fast-track obviously over-large and over-small exponents during decimal->Neil Booth
2007-10-14Consolidate logic for creating NaNs. Silence compiler warning.Neil Booth
2007-10-14Whether arithmetic is supported is a property of the semantics. Make itNeil Booth
2007-10-14Separate out parsing of decimal number. Use this to only allocateNeil Booth
2007-10-13If the power of 5 is exact, and the reciprocal exact, the error is zero not o...Neil Booth
2007-10-12Remove duplicate comment.Neil Booth
2007-10-12Implement correctly-rounded decimal->binary conversion, i.e. conversionNeil Booth
2007-10-12Remove a field that was never used.Neil Booth
2007-10-12If we're trying to be arbitrary precision, unsigned char clearly won't cut it...Neil Booth
2007-10-12Don't attempt to mask no bitsNeil Booth
2007-10-11Next PPC long double bits. First cut at constants.Dale Johannesen
2007-10-09Add new MemoryBuffer::getMemBufferCopy method.Chris Lattner