From: Chris Lattner Date: Mon, 28 Aug 2006 17:30:49 +0000 (+0000) Subject: remove extraneous space X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=20c71001a4dc91124950bbf302bd9ca5be9aa7f7;p=oota-llvm.git remove extraneous space git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29940 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Bytecode/WriteBytecodePass.h b/include/llvm/Bytecode/WriteBytecodePass.h index a102863509a..198cc026296 100644 --- a/include/llvm/Bytecode/WriteBytecodePass.h +++ b/include/llvm/Bytecode/WriteBytecodePass.h @@ -36,7 +36,7 @@ public: } bool runOnModule(Module &M) { - WriteBytecodeToFile(&M, *Out, CompressFile ); + WriteBytecodeToFile(&M, *Out, CompressFile); return false; } };