diff options
author | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-06-25 20:44:04 +0000 |
---|---|---|
committer | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-06-25 20:44:04 +0000 |
commit | eaa2e7204e85b056751d26773ad636cffbfceacd (patch) | |
tree | 6acc4c1a0c98a28b5400b161f9b2ff857cd1fced /llvm/lib/Bytecode/Writer/Writer.cpp | |
parent | ff4c42b7c3d88595b32ccfdba648afecc0ef445d (diff) | |
download | bcm5719-llvm-eaa2e7204e85b056751d26773ad636cffbfceacd.tar.gz bcm5719-llvm-eaa2e7204e85b056751d26773ad636cffbfceacd.zip |
changes to make it compatible with 64bit gcc
llvm-svn: 2790
Diffstat (limited to 'llvm/lib/Bytecode/Writer/Writer.cpp')
-rw-r--r-- | llvm/lib/Bytecode/Writer/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index 5545834ff7d..75a25f2015c 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/lib/Bytecode/Writer/Writer.cpp @@ -199,7 +199,7 @@ void BytecodeWriter::outputSymbolTable(const SymbolTable &MST) { } } -void WriteBytecodeToFile(const Module *C, ostream &Out) { +void WriteBytecodeToFile(const Module *C, std::ostream &Out) { assert(C && "You can't write a null module!!"); std::deque<unsigned char> Buffer; |