diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-19 16:24:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-19 16:24:05 +0000 |
commit | ddf3b7997fc32f9468544feb671a0e634cea9613 (patch) | |
tree | 54fcc1757f11456c1967fbb7e22fde5694a99ba3 /llvm/lib/Bytecode/Reader/Reader.cpp | |
parent | 1b4e78d9e6cd0d3d06bbf20032d380b79755168d (diff) | |
download | bcm5719-llvm-ddf3b7997fc32f9468544feb671a0e634cea9613.tar.gz bcm5719-llvm-ddf3b7997fc32f9468544feb671a0e634cea9613.zip |
Add note that this is for old bytecode files.
llvm-svn: 17991
Diffstat (limited to 'llvm/lib/Bytecode/Reader/Reader.cpp')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.cpp b/llvm/lib/Bytecode/Reader/Reader.cpp index bbf69520881..e08656822d7 100644 --- a/llvm/lib/Bytecode/Reader/Reader.cpp +++ b/llvm/lib/Bytecode/Reader/Reader.cpp @@ -1449,7 +1449,7 @@ Constant *BytecodeReader::ParseConstantValue(unsigned TypeID) { return Result; } - case Type::PointerTyID: { // ConstantPointerRef value... + case Type::PointerTyID: { // ConstantPointerRef value (backwards compat). const PointerType *PT = cast<PointerType>(Ty); unsigned Slot = read_vbr_uint(); |