- 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
-
Dale Johannesen authored
Improve description of unsupported formats. llvm-svn: 57185
-
- Sep 22, 2008
-
-
Oscar Fuentes authored
llvm-svn: 56419
-
- Aug 24, 2008
-
-
Cedric Venet authored
Adding one include file and correct one declaration from class to struct in order to make llvm compile on VC2005. llvm-svn: 55279
-
Chris Lattner authored
llvm-svn: 55265
-
Chris Lattner authored
use raw_ostream instead of std::ostream. Among other goodness, this speeds up llvm-dis of kc++ with a release build from 0.85s to 0.49s (88% faster). Other interesting changes: 1) This makes Value::print be non-virtual. 2) AP[S]Int and ConstantRange can no longer print to ostream directly, use raw_ostream instead. 3) This fixes a bug in raw_os_ostream where it didn't flush itself when destroyed. 4) This adds a new SDNode::print method, instead of only allowing "dump". A lot of APIs have both std::ostream and raw_ostream versions, it would be useful to go through and systematically anihilate the std::ostream versions. This passes dejagnu, but there may be minor fallout, plz let me know if so and I'll fix it. llvm-svn: 55263
-
- Aug 23, 2008
-
-
Chris Lattner authored
llvm-svn: 55252
-
Chris Lattner authored
all the power and risk of fprintf format strings. Use them like this: OS << format("%10.4f", 42.0) << "\n" << format("%x", 42) << '\n'; llvm-svn: 55246
-
Dan Gohman authored
llvm-svn: 55210
-
- Aug 22, 2008
-
-
Chris Lattner authored
Patch contributed by Bjorn Reese! llvm-svn: 55179
-
Owen Anderson authored
Fix write() when the string being written is larger than the buffer. This broke various ObjC testcases with very long symbol names. llvm-svn: 55148
-
- Aug 21, 2008
-
-
Owen Anderson authored
llvm-svn: 55138
-
Owen Anderson authored
llvm-svn: 55092
-