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 | 1f018c2d01bd190f883ff6df02bb793c25e7b205 (patch) | |
tree | 9fd9ca9b3f66a7be1005bfedc374879df6e47dd4 /llvm/lib/Bytecode/Writer/Writer.cpp | |
parent | 6089bb1f19665b51e36e82ab7ff68671444599b2 (diff) | |
download | bcm5719-llvm-1f018c2d01bd190f883ff6df02bb793c25e7b205.tar.gz bcm5719-llvm-1f018c2d01bd190f883ff6df02bb793c25e7b205.zip |
Toggle sense of flag
llvm-svn: 10838
Diffstat (limited to 'llvm/lib/Bytecode/Writer/Writer.cpp')
-rw-r--r-- | llvm/lib/Bytecode/Writer/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index 308f1e9e1ef..100d34e2a1a 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/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(); |