summaryrefslogtreecommitdiff
path: root/include/llvm/Bitcode
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2011-03-01 19:50:55 +0000
committerDan Gohman <gohman@apple.com>2011-03-01 19:50:55 +0000
commit898fd7fd61c743c9b90ee5d0fa180b9ae1990d7b (patch)
tree3b38f8476997274b9160c8a5d3acfe690eab29ef /include/llvm/Bitcode
parentbdcd766028bc17e83f1312e3e52b1d9b22c6a624 (diff)
downloadllvm-898fd7fd61c743c9b90ee5d0fa180b9ae1990d7b.tar.gz
llvm-898fd7fd61c743c9b90ee5d0fa180b9ae1990d7b.tar.bz2
llvm-898fd7fd61c743c9b90ee5d0fa180b9ae1990d7b.tar.xz
Revert PathV2 changes, as sys::fs::unique_file is not finished yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126773 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode')
-rw-r--r--include/llvm/Bitcode/Archive.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Bitcode/Archive.h b/include/llvm/Bitcode/Archive.h
index c3c07d8588..4abfa6e844 100644
--- a/include/llvm/Bitcode/Archive.h
+++ b/include/llvm/Bitcode/Archive.h
@@ -25,7 +25,6 @@
namespace llvm {
class MemoryBuffer;
- class raw_ostream;
// Forward declare classes
class Module; // From VMCore
@@ -483,7 +482,7 @@ class Archive {
bool loadSymbolTable(std::string* ErrMessage);
/// @brief Write the symbol table to an ofstream.
- void writeSymbolTable(raw_ostream& ARFile);
+ void writeSymbolTable(std::ofstream& ARFile);
/// Writes one ArchiveMember to an ofstream. If an error occurs, returns
/// false, otherwise true. If an error occurs and error is non-null then
@@ -492,7 +491,7 @@ class Archive {
/// @returns true Writing member failed, \p error set to error message
bool writeMember(
const ArchiveMember& member, ///< The member to be written
- raw_ostream& ARFile, ///< The file to write member onto
+ std::ofstream& ARFile, ///< The file to write member onto
bool CreateSymbolTable, ///< Should symbol table be created?
bool TruncateNames, ///< Should names be truncated to 11 chars?
bool ShouldCompress, ///< Should the member be compressed?