aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bytecode
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-11-08 19:01:03 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-11-08 19:01:03 +0000
commit35c4c33879f5171f3c19781e3396a940264ea0b8 (patch)
tree5bf541aa6665c3f59d07698020ec2dff9bf4b3b0 /include/llvm/Bytecode
parent99c448846bbe256435e22f89def4b364c4c3b6a3 (diff)
downloadexternal_llvm-35c4c33879f5171f3c19781e3396a940264ea0b8.zip
external_llvm-35c4c33879f5171f3c19781e3396a940264ea0b8.tar.gz
external_llvm-35c4c33879f5171f3c19781e3396a940264ea0b8.tar.bz2
Remove extra spaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bytecode')
-rw-r--r--include/llvm/Bytecode/WriteBytecodePass.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Bytecode/WriteBytecodePass.h b/include/llvm/Bytecode/WriteBytecodePass.h
index 387bd0a..61a2a38 100644
--- a/include/llvm/Bytecode/WriteBytecodePass.h
+++ b/include/llvm/Bytecode/WriteBytecodePass.h
@@ -28,8 +28,8 @@ class WriteBytecodePass : public ModulePass {
public:
WriteBytecodePass()
: Out(&std::cout), DeleteStream(false), CompressFile(true) {}
- WriteBytecodePass(std::ostream *o, bool DS = false, bool CF = true )
- : Out(o), DeleteStream(DS), CompressFile(CF) {}
+ WriteBytecodePass(std::ostream *o, bool DS = false, bool CF = true)
+ : Out(o), DeleteStream(DS), CompressFile(CF) {}
inline ~WriteBytecodePass() {
if (DeleteStream) delete Out;