index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
llvm
/
Support
/
FormattedStream.h
Age
Commit message (
Expand
)
Author
2013-04-01
unindent the file to follow coding standards, change class doc comment
Chris Lattner
2012-09-23
Add LLVM_OVERRIDE to methods that override their base classes.
Craig Topper
2012-09-14
formatted_raw_ostream: Fix a serious bug in tell().
Daniel Dunbar
2010-09-01
Make tool_output_file's raw_ostream instance a member variable instead
Dan Gohman
2010-08-23
formatted_tool_output_file::close needs to flush its buffer before
Dan Gohman
2010-08-20
Export error-handling functions in formatted_tool_output_file.
Dan Gohman
2010-08-20
Introduce a new tool_output_file class, which extends raw_ostream with
Dan Gohman
2010-02-15
comment fix.
Chris Lattner
2010-02-15
make PadToColumn return the stream so you can use:
Chris Lattner
2010-01-05
Fix a build error by adding a missing commit.
David Greene
2009-12-19
Make some methods const. The only interesting change here is that
Chris Lattner
2009-09-22
Revert "Don't allow formatted_ostream to be unbuffered, even if its underlying
Daniel Dunbar
2009-09-21
Don't allow formatted_ostream to be unbuffered, even if its underlying buffer
Daniel Dunbar
2009-09-06
Change "const static" to "static const", as warned about
Duncan Sands
2009-08-22
switch formattedstream to use raw_ostream::indent. This eliminates
Chris Lattner
2009-08-18
raw_ostream: Reduce FormattedStream's reliance on raw_ostream's implementation.
Daniel Dunbar
2009-08-17
the MinPad argument to PadToColumn only really makes sense to be 1,
Chris Lattner
2009-08-15
Move FormattedStream's write_impl out of line.
Dan Gohman
2009-08-13
Make formatted_raw_ostream restore the buffer settings of the
Dan Gohman
2009-08-12
Add a GetBufferSize() member to raw_ostream and use it to
Dan Gohman
2009-07-29
Re-apply previous changes and improve column padding performance some more.
David Greene
2009-07-29
Revert r77397, it causes significant regressions in llc performance.
Daniel Dunbar
2009-07-28
Improve performance of PadToColumn by eliminating flushes.
David Greene
2009-07-23
Write space padding as one string to speed up comment printing.
David Greene
2009-07-16
Use setStream infomatted_raw_ostream's constructor, to reduce code
Dan Gohman
2009-07-16
Remove inapplicable comments.
Dan Gohman
2009-07-16
Use size_t.
Dan Gohman
2009-07-16
formatted_raw_ostream both is-a raw_ostream and has-a raw_ostream. This
Dan Gohman
2009-07-14
fix a bug in my previous patch.
Chris Lattner
2009-07-14
allow default construction of formatted_raw_ostream.
Chris Lattner
2009-07-14
Have asm printers use formatted_raw_ostream directly to avoid a
David Greene
2009-07-13
Make some more changes suggested by Chris. Manipulators go away.
David Greene
2009-07-10
Make changes suggested by Chris and eliminate newly-added raw_ostream
David Greene