diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-14 02:50:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-14 02:50:16 +0000 |
commit | 277bafbff7384f282c4a409863c220536d6f09b6 (patch) | |
tree | 7afa42ebecda6a6770886ad83f77d9fbe28e38f5 /lib/Bytecode/Writer/Writer.cpp | |
parent | 8ce750145db529a3f5f09aeffba52194e879c7a3 (diff) |
Toggle sense of flag
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10838 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/Writer.cpp')
-rw-r--r-- | lib/Bytecode/Writer/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp index 308f1e9e1e..100d34e2a1 100644 --- a/lib/Bytecode/Writer/Writer.cpp +++ b/lib/Bytecode/Writer/Writer.cpp @@ -40,7 +40,7 @@ BytesWritten("bytecodewriter", "Number of bytecode bytes written"); BytecodeWriter::BytecodeWriter(std::deque<unsigned char> &o, const Module *M) - : Out(o), Table(M, false) { + : Out(o), Table(M, true) { outputSignature(); |