aboutsummaryrefslogtreecommitdiff
path: root/llvm/utils/FileUpdate/FileUpdate.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-09-01 14:20:41 +0000
committerDan Gohman <gohman@apple.com>2010-09-01 14:20:41 +0000
commita2233f28014b92c31905f3bf9c084422d42fd648 (patch)
tree35e59993bf205438fe7bc9ce9fe14139ba4e1592 /llvm/utils/FileUpdate/FileUpdate.cpp
parente201c07d2305dc9a3609ba4feb95336000dc71e6 (diff)
downloadllvm-a2233f28014b92c31905f3bf9c084422d42fd648.zip
llvm-a2233f28014b92c31905f3bf9c084422d42fd648.tar.gz
llvm-a2233f28014b92c31905f3bf9c084422d42fd648.tar.bz2
Make tool_output_file's raw_ostream instance a member variable instead
of a base class. This makes it possible to unregister the file from FilesToRemove when the file is done. Also, this eliminates the need for formatted_tool_output_file. llvm-svn: 112706
Diffstat (limited to 'llvm/utils/FileUpdate/FileUpdate.cpp')
-rw-r--r--llvm/utils/FileUpdate/FileUpdate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/FileUpdate/FileUpdate.cpp b/llvm/utils/FileUpdate/FileUpdate.cpp
index 8377aea..2cf366f 100644
--- a/llvm/utils/FileUpdate/FileUpdate.cpp
+++ b/llvm/utils/FileUpdate/FileUpdate.cpp
@@ -78,7 +78,7 @@ int main(int argc, char **argv) {
return 1;
}
- OutStream.write(In->getBufferStart(), In->getBufferSize());
+ OutStream.os().write(In->getBufferStart(), In->getBufferSize());
// Declare success.
OutStream.keep();