diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2009-02-20 23:04:06 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2009-02-20 23:04:06 +0000 |
commit | 662086ab0ce2a5090280c967f0bafb75d2bc739c (patch) | |
tree | f26f1833fbb975a90519018ea1f51c61a4d9dd56 /include/llvm/Bitcode/ReaderWriter.h | |
parent | 502973fd3e3edeaad3d6e98a37dc758c006f31a7 (diff) | |
download | external_llvm-662086ab0ce2a5090280c967f0bafb75d2bc739c.zip external_llvm-662086ab0ce2a5090280c967f0bafb75d2bc739c.tar.gz external_llvm-662086ab0ce2a5090280c967f0bafb75d2bc739c.tar.bz2 |
Removed trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65199 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode/ReaderWriter.h')
-rw-r--r-- | include/llvm/Bitcode/ReaderWriter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Bitcode/ReaderWriter.h b/include/llvm/Bitcode/ReaderWriter.h index 7b1e06f..ce5c29c 100644 --- a/include/llvm/Bitcode/ReaderWriter.h +++ b/include/llvm/Bitcode/ReaderWriter.h @@ -24,7 +24,7 @@ namespace llvm { class ModulePass; class BitstreamWriter; class raw_ostream; - + /// getBitcodeModuleProvider - Read the header of the specified bitcode buffer /// and prepare for lazy deserialization of function bodies. If successful, /// this takes ownership of 'buffer' and returns a non-null pointer. On @@ -37,11 +37,11 @@ namespace llvm { /// If an error occurs, this returns null and fills in *ErrMsg if it is /// non-null. This method *never* takes ownership of Buffer. Module *ParseBitcodeFile(MemoryBuffer *Buffer, std::string *ErrMsg = 0); - + /// WriteBitcodeToFile - Write the specified module to the specified output /// stream. void WriteBitcodeToFile(const Module *M, std::ostream &Out); - + /// WriteBitcodeToFile - Write the specified module to the specified /// raw output stream. void WriteBitcodeToFile(const Module *M, raw_ostream &Out); |