summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-19 16:24:05 +0000
committerChris Lattner <sabre@nondot.org>2004-11-19 16:24:05 +0000
commit638c381ef73526b10afcab54b7721c176f8832ae (patch)
tree595b83f6716303f87410bbfafe7f42df78b4b392 /lib
parent3fb2045c7c4884c0f86359320c93c2746b93a1cf (diff)
downloadllvm-638c381ef73526b10afcab54b7721c176f8832ae.tar.gz
llvm-638c381ef73526b10afcab54b7721c176f8832ae.tar.bz2
llvm-638c381ef73526b10afcab54b7721c176f8832ae.tar.xz
Add note that this is for old bytecode files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17991 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Bytecode/Reader/Reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/Reader.cpp b/lib/Bytecode/Reader/Reader.cpp
index bbf6952088..e08656822d 100644
--- a/lib/Bytecode/Reader/Reader.cpp
+++ b/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();