aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Bitcode
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-06-01 04:42:10 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-06-01 04:42:10 +0000
commit3728a0253492cafc02893fc89890ed3452754970 (patch)
treee719bf817600f9fd3013e56fcb20257934d54244 /lib/Bitcode
parent079c03448920bc815590a991460fe75facafe7f5 (diff)
downloadexternal_llvm-3728a0253492cafc02893fc89890ed3452754970.zip
external_llvm-3728a0253492cafc02893fc89890ed3452754970.tar.gz
external_llvm-3728a0253492cafc02893fc89890ed3452754970.tar.bz2
Update the bitcode reader to support reading .bc files where the embedded
metadata references non-Constant values such as instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72685 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode')
-rw-r--r--lib/Bitcode/Reader/BitcodeReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp
index d1fdec2..1dad04b 100644
--- a/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/lib/Bitcode/Reader/BitcodeReader.cpp
@@ -1025,7 +1025,7 @@ bool BitcodeReader::ParseConstants() {
for (unsigned i = 0; i != Size; i += 2) {
const Type *Ty = getTypeByID(Record[i], false);
if (Ty != Type::VoidTy)
- Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], Ty));
+ Elts.push_back(ValueList.getValueFwdRef(Record[i+1], Ty));
else
Elts.push_back(NULL);
}