diff options
| author | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:37:43 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:37:43 +0000 | 
| commit | 1d670cc40299cb51198c58f9c0c97a9b54248760 (patch) | |
| tree | b14d1e0dfa9c6ba68f0fdeead83f6e7fdc733203 /lib/Bytecode/Reader/InstructionReader.cpp | |
| parent | 007377f381e253cc559db8d3c94fa89b0eb55fad (diff) | |
* Remove support for internal constant pool
* Support globally unique constants
* Support recursive and forward referenced types
* Support abstract types
* Add new BCR_TRACE macro to enable debugging of why the bytecode reader
  occasionally refuses to read something
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@448 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/InstructionReader.cpp')
| -rw-r--r-- | lib/Bytecode/Reader/InstructionReader.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/InstructionReader.cpp b/lib/Bytecode/Reader/InstructionReader.cpp index 6dedc288a4..ed5a54d392 100644 --- a/lib/Bytecode/Reader/InstructionReader.cpp +++ b/lib/Bytecode/Reader/InstructionReader.cpp @@ -82,7 +82,7 @@ bool BytecodeParser::ParseRawInst(const uchar *&Buf, const uchar *EndBuf,  #if 0    cerr << "NO: "  << Result.NumOperands   << " opcode: " << Result.Opcode  -       << " Ty: " << Result.Ty->getName() << " arg1: "   << Result.Arg1  +       << " Ty: " << Result.Ty->getDescription() << " arg1: "   << Result.Arg1          << " arg2: "   << Result.Arg2 << " arg3: "   << Result.Arg3 << endl;  #endif    return false;  | 
