- Jan 28, 2009
-
-
Mikhail Glushenkov authored
llvm-svn: 63171
-
- Jan 27, 2009
-
-
Torok Edwin authored
causing assertion failures in getSExtValue(). Fix it by making highWordBits actually contain what its name says, and add some more unit-tests for APInt. This fixes PR3419. llvm-svn: 63107
-
- Jan 26, 2009
-
-
Ted Kremenek authored
llvm-svn: 63044
-
- Jan 23, 2009
-
-
Devang Patel authored
DW_AT_APPLE_optimized flag is set when a compile_unit is optimized. The debugger takes advantage of this information some way. DW_AT_APPLE_flags encodes command line options when certain env. variable is set. This is used by build engineers to track various gcc command lines used by by a project, irrespective of whether the project used makefile, Xcode or something else. llvm-gcc patch is next. llvm-svn: 62888
-
- Jan 21, 2009
-
-
Dale Johannesen authored
ASCII IR; loading and storing these can change the bits of NaNs on some hosts. Remove or add warnings at a few other places using host floating point; this is a bad thing to do in general. llvm-svn: 62712
-
Chris Lattner authored
compatibility with cygwin. Patch by Jay Foad! llvm-svn: 62695
-
Mikhail Glushenkov authored
llvm-svn: 62688
-
Dale Johannesen authored
Besides APFloat, this involved removing code from two places that thought they knew the result of frem(0., x) but were wrong. llvm-svn: 62645
-
- Jan 20, 2009
-
-
Dale Johannesen authored
fully implemented yet and not used. This is mainly to clarify that APFloat::mod implements C fmod, not remainder. llvm-svn: 62593
-
Chris Lattner authored
Patrick Boettcher! llvm-svn: 62592
-
- Jan 19, 2009
-
-
Dale Johannesen authored
llvm-svn: 62528
-
Nick Lewycky authored
llvm-svn: 62512
-
- Jan 16, 2009
-
-
Mikhail Glushenkov authored
Makes possible to specify options that take multiple arguments (a-la -sectalign on Darwin). See documentation for details. llvm-svn: 62372
-
- Jan 09, 2009
-
-
Misha Brukman authored
llvm-svn: 61991
-
- Dec 23, 2008
-
-
Steve Naroff authored
llvm-svn: 61378
-
- Dec 09, 2008
-
-
Nuno Lopes authored
llvm-svn: 60770
-
- Dec 08, 2008
-
-
Nick Lewycky authored
llvm-svn: 60679
-
- Dec 04, 2008
-
-
Ted Kremenek authored
Have raw_fd_ostream keep track of the position in the file to make tell() go faster by not requiring a flush(). llvm-svn: 60560
-
- Nov 27, 2008
-
-
Nuno Lopes authored
llvm-svn: 60175
-
Nuno Lopes authored
llvm-svn: 60174
-
Bill Wendling authored
inlined" message. llvm-svn: 60165
-
- Nov 26, 2008
-
-
Ted Kremenek authored
Add 'tell' method to raw_fd_ostream that clients can use to query the current location in the file the stream is writing to. llvm-svn: 60085
-
Evan Cheng authored
Revert r60042. IndVarSimplify should check if APFloat is PPCDoubleDouble first before trying to convert it to an integer. llvm-svn: 60072
-
Nuno Lopes authored
change AnnotationManager to use 'const char*' instead of std::string. this fixes the leakage of those strings and avoids the creation of such strings in static cosntructors (should result in a little improvement of startup time) llvm-svn: 60064
-
- Nov 25, 2008
-
-
Evan Cheng authored
convertToSignExtendedInteger should return opInvalidOp instead of asserting if sematics of float does not allow arithmetics. llvm-svn: 60042
-
- Nov 13, 2008
-
-
Daniel Dunbar authored
Document raw_fd_ostream's treatment of "-". llvm-svn: 59219
-
- Nov 03, 2008
-
-
Dan Gohman authored
to avoid overload ambiguities. This fixes build errors introduced by r58623. llvm-svn: 58632
-
- Oct 26, 2008
-
-
Chris Lattner authored
Thanks to Török Edwin for the awesome reduced testcase. llvm-svn: 58199
-
- Oct 24, 2008
-
-
Ted Kremenek authored
llvm-svn: 58052
-
- Oct 22, 2008
-
-
Julien Lerouge authored
llvm-svn: 57984
-
- Oct 21, 2008
-
-
Daniel Dunbar authored
documentation. Add C++ header marker. llvm-svn: 57923
-
- Oct 14, 2008
-
-
Dan Gohman authored
instead of requiring all "short description" strings to begin with two spaces. This makes these strings less mysterious, and it fixes some cases where short description strings mistakenly did not begin with two spaces. llvm-svn: 57521
-
- Oct 12, 2008
-
-
Dale Johannesen authored
llvm-svn: 57425
-
Dale Johannesen authored
match gcc. Helps with the testsuite. llvm-svn: 57410
-
Chris Lattner authored
llvm-svn: 57384
-
- Oct 10, 2008
-
-
Dale Johannesen authored
and APFloat::convertToInteger. Restore return value to IEEE754. Adjust all users accordingly. llvm-svn: 57329
-
- Oct 09, 2008
-
-
Dale Johannesen authored
make it clearer what the function does. No functional change. llvm-svn: 57325
-
- Oct 07, 2008
-
-
Dale Johannesen authored
since -0.0 can't be represented as an int. This prevents llvm from reducing -0.0 to a load-and-convert of int 0. Fixes ieee.exp/mzero[2356].c in gcc testsuite. llvm-svn: 57224
-
Dale Johannesen authored
are Inexact. (These are not Inexact as defined by IEEE754, but that seems like a reasonable way to abstract what happens: information is lost.) llvm-svn: 57218
-
- Oct 06, 2008
-
-
Dale Johannesen authored
it is too aggressive. llvm-svn: 57203
-