@@ -288,7 +288,7 @@ void BitcodeReaderValueList::ResolveConstantForwardRefs() {
288
288
// Make the new constant.
289
289
Constant *NewC;
290
290
if (ConstantArray *UserCA = dyn_cast<ConstantArray>(UserC)) {
291
- NewC = Context. getConstantArray (UserCA->getType (), &NewOps[0 ],
291
+ NewC = ConstantArray::get (UserCA->getType (), &NewOps[0 ],
292
292
NewOps.size ());
293
293
} else if (ConstantStruct *UserCS = dyn_cast<ConstantStruct>(UserC)) {
294
294
NewC = ConstantStruct::get (&NewOps[0 ], NewOps.size (),
@@ -930,7 +930,7 @@ bool BitcodeReader::ParseConstants() {
930
930
const Type *EltTy = ATy->getElementType ();
931
931
for (unsigned i = 0 ; i != Size ; ++i)
932
932
Elts.push_back (ValueList.getConstantFwdRef (Record[i], EltTy));
933
- V = Context. getConstantArray (ATy, Elts);
933
+ V = ConstantArray::get (ATy, Elts);
934
934
} else if (const VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
935
935
const Type *EltTy = VTy->getElementType ();
936
936
for (unsigned i = 0 ; i != Size ; ++i)
@@ -952,7 +952,7 @@ bool BitcodeReader::ParseConstants() {
952
952
std::vector<Constant*> Elts;
953
953
for (unsigned i = 0 ; i != Size ; ++i)
954
954
Elts.push_back (ConstantInt::get (EltTy, Record[i]));
955
- V = Context. getConstantArray (ATy, Elts);
955
+ V = ConstantArray::get (ATy, Elts);
956
956
break ;
957
957
}
958
958
case bitc::CST_CODE_CSTRING: { // CSTRING: [values]
@@ -967,7 +967,7 @@ bool BitcodeReader::ParseConstants() {
967
967
for (unsigned i = 0 ; i != Size ; ++i)
968
968
Elts.push_back (ConstantInt::get (EltTy, Record[i]));
969
969
Elts.push_back (Context.getNullValue (EltTy));
970
- V = Context. getConstantArray (ATy, Elts);
970
+ V = ConstantArray::get (ATy, Elts);
971
971
break ;
972
972
}
973
973
case bitc::CST_CODE_CE_BINOP: { // CE_BINOP: [opcode, opval, opval]
0 commit comments