Fix issue with bitwise and precedence.
[oota-llvm.git] / lib / Support / raw_ostream.cpp
2011-12-13 Michael J. SpencerSupport/Program: Make Change<stream>ToBinary return...
2011-10-13 Eli FriedmanAvoid undefined behavior in signed integer negation...
2011-08-28 Nick LewyckyFix integer overflow bug in raw_ostream::write. This...
2011-03-18 NAKAMURA Takumiraw_ostream: [PR6745] Tweak formatting (double)%e for...
2011-03-16 NAKAMURA Takumilib/Support/raw_ostream.cpp: On mingw, report_fatal_err...
2011-03-04 Benjamin Kramerraw_ostream: while it is generally desirable to do...
2011-03-04 Benjamin Kramerraw_ostream: If writing a string that is larger than...
2011-02-03 Daniel Dunbarraw_fd_ostream: Add a SetUseAtomicWrites() method ...
2011-01-17 Michael J. SpencerSupport/raw_ostream: Fix uninitalized variable in raw_f...
2010-11-29 Michael J. SpencerMerge System into Support.
2010-11-27 Daniel Dunbarraw_ostream::write_escaped: Add a UseHexEscapes argument.
2010-10-19 NAKAMURA Takumilib/Support/raw_ostream.cpp: Fix Cygwin's build.
2010-10-14 Francois PichetAlways use binary mode for output stream. This is impor...
2010-10-07 Dan GohmanMove tool_output_file into its own file.
2010-09-01 Dan GohmanMake tool_output_file's raw_ostream instance a member...
2010-08-20 Dan GohmanMake outs() close its file when its stream is destructe...
2010-08-20 Dan GohmanDelete raw_stdout_ostream and raw_stderr_ostream, which...
2010-08-20 Dan GohmanMove raw_ostream's Error flag into raw_fd_ostream,...
2010-08-20 Dan GohmanIntroduce a new tool_output_file class, which extends...
2010-08-18 Dan GohmanMake raw_fd_ostream consider itself the owner of STDOUT...
2010-08-18 Dan GohmanRevert r111321. This doesn't fix a problem.
2010-08-17 Chris LattnerFix the rest of rdar://8318441 which happens when a...
2010-08-03 Chris Lattneravoid undef behavior on minint, fixing PR7783.
2010-07-07 Chris Lattneradd some triple for minix, patch by Kees van Reeuwijk...
2010-05-28 Dan GohmanMinor code simplification.
2010-05-28 Dan GohmanFix a redundant-return warning.
2010-05-18 Dan GohmanUsage of O_NONBLOCK in bjam is now confirmed as a bug...
2010-05-06 Dan GohmanHandle the case where open(2) or close(2) is interrupte...
2010-05-06 Dan GohmanHandle EWOULDBLOCK as EAGAIN. And add a comment explain...
2010-05-05 Benjamin KramerTry again if write(2) reports an recoverable error.
2010-04-09 Chris Lattneradd minix support, patch by Kees van Reeuwijk! PR6797
2010-04-07 Chris Lattnerrename llvm::llvm_report_error -> llvm::report_fatal_error
2010-03-24 Dan GohmanFix minor style issues.
2010-03-05 Chris Lattneradd an assertion requested on llvmdev.
2010-02-15 Chris Lattnerenhance raw_svector_ostream::write_impl to work with...
2010-01-29 Benjamin KramerFix MSVC build.
2010-01-29 Benjamin KramerUse llvm::format instead of ftostr (which just calls...
2010-01-22 Chris LattnerChanges to fix buffering that I forgot to commit with...
2010-01-22 Chris Lattneradd a new MCAsmStreamer::GetCommentOS method to simplif...
2009-12-19 Chris LattnerMake some methods const. The only interesting change...
2009-12-14 Dan GohmanMicro-optimize these functions in the case where they...
2009-10-17 Daniel DunbarAdd raw_ostream::write_escaped, for writing escaped...
2009-09-15 Daniel DunbarDrop the raw_ostream required buffer size to 1.
2009-09-11 Dan GohmanFix llvm-extract's "writing bitcode to a terminal"...
2009-08-25 Dan GohmanMake LLVM command-line tools overwrite their output...
2009-08-24 Dan GohmanCorrectly account for the Spaces array nul terminator...
2009-08-24 Dan Gohmanraw_ostream::indent is used for PadToColumn which often...
2009-08-24 Chris Lattnersplit raw_os_ostream out to its own header and implemen...
2009-08-24 Chris Lattnerprune the #includes in raw_ostream.h by moving a
2009-08-23 Daniel DunbarFix off-by-one in llvm::Format::print.
2009-08-23 Benjamin KramerFix windows build.
2009-08-23 Chris LattnerChange raw_fd_ostream to take flags as an optional...
2009-08-22 Chris Lattneradd a raw_ostream::indent method, to be used like:
2009-08-19 Daniel DunbarChange raw_svector_ostream to reserve the input buffer...
2009-08-19 Daniel DunbarSwitch raw_svector_ostream to use the vector as the...
2009-08-19 Daniel DunbarSpeculatively revert r79375, which may be breaking...
2009-08-19 Daniel Dunbarraw_ostream: Simplify write(unsigned char) to match...
2009-08-19 Daniel Dunbarraw_ostream: Remove pointless redefinitions of tell().
2009-08-18 Daniel Dunbarraw_ostream: Add the capability for subclasses to manua...
2009-08-18 Daniel DunbarSpeed up raw_ostream::<<(unsigned long long) for 32...
2009-08-18 Dan GohmanFix a bug in raw_ostream::write(char) introduced by...
2009-08-18 Daniel DunbarRevert r78924, disabling buffering defeats all the...
2009-08-15 Dan GohmanMingw also doesn't have st_blksize.
2009-08-15 Dan GohmanAlways check to see if raw_fd_ostream's file descriptor...
2009-08-13 Dan GohmanWhen standard output is a terminal, set outs() to be...
2009-08-13 Dan GohmanFix a compiler warning about comparing signed with...
2009-08-13 Dan GohmanAdd an assert to check copy_to_buffer's precondition.
2009-08-13 Dan GohmanSet raw_os_ostream, raw_string_ostream, and raw_svector...
2009-08-13 Dan GohmanAdd support to raw_ostream for sizing the buffer accord...
2009-08-13 Dan GohmanMove SetBufferSize and SetUnbuffered out of line.
2009-08-13 Dan GohmanFix the buffer handling logic so that write_impl is...
2009-07-30 Daniel DunbarAdd raw_ostream::write_hex
2009-07-29 Daniel DunbarPerform simplification noticed by Reid.
2009-07-29 Daniel Dunbarraw_ostream: Follow the 32-bit path when printing ...
2009-07-27 Dan GohmanMake raw_null_ostream flush its buffer in its destructo...
2009-07-27 Dan GohmanAdd an assertion check to raw_ostream's destructor...
2009-07-16 Daniel DunbarAdd raw_null_ostream and llvm::nulls(), a raw_ostream...
2009-07-16 Dan GohmanUse size_t.
2009-07-15 Dan GohmanChange raw_ostream so that it doesn't call llvm_report_...
2009-07-15 Dan GohmanAdd a Force option to raw_fd_ostream to specify whether...
2009-07-15 Dan GohmanCheck for errors on close(2) too. And lseek(2).
2009-07-15 Dan GohmanUse 0664 instead of 0644 for the default open mode...
2009-07-15 Daniel DunbarDetect write failures on raw_fd_ostream.
2009-07-14 David GreeneHave asm printers use formatted_raw_ostream directly...
2009-07-10 David GreeneMake changes suggested by Chris and eliminate newly...
2009-07-09 David GreeneAdd some hooks that a redesigned AsmStream needs to...
2009-06-04 Torok EdwinAdd support for outputting ANSI colors to raw_fd_ostream.
2009-04-20 Douglas GregorMake all raw_ostreams support the tell() function.
2009-03-17 Daniel DunbarAdd BUILTIN_EXPECT Support/Compiler macro.
2009-03-17 Daniel Dunbarraw_ostream: Put all exceptional conditions in raw_ostr...
2009-03-17 Daniel Dunbarraw_ostream: Rework implementation of unbuffered stream...
2009-03-16 Daniel Dunbarraw_ostream: Replace flush_impl with write_impl, which...
2009-03-16 Daniel Dunbarraw_ostream: Lift out flush_nonempty.
2009-03-16 Daniel DunbarMake raw_ostream::operator<<(const void *) fast; it...
2009-03-16 Daniel DunbarAdd slow path for single character write, and use exclu...
2009-03-10 Daniel DunbarPR3478: raw_ostream should not buffer stderr
2009-01-26 Ted KremenekAdd method raw_fd_ostream::seek() for random access...
2008-12-04 Ted KremenekHave raw_fd_ostream keep track of the position in the...
2008-11-26 Ted KremenekAdd 'tell' method to raw_fd_ostream that clients can...
2008-11-13 Daniel DunbarAdd Binary flag to raw_fd_ostream constructor.
next