diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-23 03:21:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-23 03:21:10 +0000 |
commit | 2b9f6004dfc87aa03774c494257c57695d591822 (patch) | |
tree | 0d1ede1f944bb34b3afa328d6b796a6606d2a2ba /lib/Bytecode/Reader/ReaderInternals.h | |
parent | e638c10cb0fd3e5e50e0eec226367eba861eba0f (diff) |
Fixed a LONG standing, SCARY problem with bytecode encoding. It turns out to be an endian problem that only shows up with type 0 instructions in LARGE programs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@961 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/ReaderInternals.h')
-rw-r--r-- | lib/Bytecode/Reader/ReaderInternals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/ReaderInternals.h b/lib/Bytecode/Reader/ReaderInternals.h index 1d9903dcde..eed4fd0b49 100644 --- a/lib/Bytecode/Reader/ReaderInternals.h +++ b/lib/Bytecode/Reader/ReaderInternals.h @@ -16,7 +16,7 @@ #include <list> // Enable to trace to figure out what the heck is going on when parsing fails -#define TRACE_LEVEL 0 +#define TRACE_LEVEL 10 #if TRACE_LEVEL // ByteCodeReading_TRACEer #include "llvm/Assembly/Writer.h" |