diff options
author | Joe Abbey <jabbey@arxan.com> | 2012-11-25 15:23:39 +0000 |
---|---|---|
committer | Joe Abbey <jabbey@arxan.com> | 2012-11-25 15:23:39 +0000 |
commit | 2ad8df24ec7a20bcce65c589379bc474bbca9cb2 (patch) | |
tree | 21895bd27b9a092d0542fd113cf0f6bd2cc35373 /llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp | |
parent | cdb9a538d6d4d71fe0e3ba2252005d6f42551c58 (diff) | |
download | bcm5719-llvm-2ad8df24ec7a20bcce65c589379bc474bbca9cb2.tar.gz bcm5719-llvm-2ad8df24ec7a20bcce65c589379bc474bbca9cb2.zip |
Code Custodian:
- Widespread trailing space removal
- A dash of OCD spacing to block align enums
- joined a line that probably needed 80 cols a while back
llvm-svn: 168566
Diffstat (limited to 'llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp index 91e115cba6c..e5e76e29bd2 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp @@ -22,9 +22,9 @@ namespace { static char ID; // Pass identification, replacement for typeid explicit WriteBitcodePass(raw_ostream &o) : ModulePass(ID), OS(o) {} - + const char *getPassName() const { return "Bitcode Writer"; } - + bool runOnModule(Module &M) { WriteBitcodeToFile(&M, OS); return false; |