Avoid the deprecated GetVersionEx API
[oota-llvm.git] / lib / Support / raw_ostream.cpp
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.
2008-10-26 Chris Lattnerfix PR2953, an off-by-one error handling formatted...
2008-10-23 Ted KremenekAdded raw_fd_ostream::close().
2008-10-21 Daniel DunbarClear raw_fd_ostream error string on success and explai...
2008-08-24 Cedric VenetUpdating VC++ project.
2008-08-23 Chris LattnerAdd raw_stream adaptors that write into an std::string...
2008-08-23 Chris LattnerSwitch the asmprinter (.ll) and all the stuff it requir...
2008-08-23 Chris Lattneradd #include
2008-08-23 Chris Lattneradd a simple mechanism for formatted output. This...
2008-08-22 Chris Lattnerimprove support for systems that need unistd.h to get...
2008-08-21 Owen AndersonFix write() when the string being written is larger...
2008-08-21 Owen AndersonMove non-trivial methods out of line to avoid code...
2008-08-21 Owen AndersonUse raw_ostream throughout the AsmPrinter.
2008-08-17 Argyrios KyrtzidisGet raw_ostream.cpp to compile on MSVC.
2008-08-17 Chris Lattneradd support for a cout/cerr analog (outs()/errs())...
2008-08-17 Chris Lattneropening "-" automatically yields stdout.
2008-08-17 Chris Lattnerrename OutputData to 'write' to match ostream.
2008-08-17 Chris Lattneradd a new raw_ostream class which is an extremely high...