mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
pr20588: add missing calls to va_end.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215212 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -506,7 +506,9 @@ StructType *StructType::get(Type *type, ...) {
|
|||||||
StructFields.push_back(type);
|
StructFields.push_back(type);
|
||||||
type = va_arg(ap, llvm::Type*);
|
type = va_arg(ap, llvm::Type*);
|
||||||
}
|
}
|
||||||
return llvm::StructType::get(Ctx, StructFields);
|
auto *Ret = llvm::StructType::get(Ctx, StructFields);
|
||||||
|
va_end(ap);
|
||||||
|
return Ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
StructType *StructType::create(LLVMContext &Context, ArrayRef<Type*> Elements,
|
StructType *StructType::create(LLVMContext &Context, ArrayRef<Type*> Elements,
|
||||||
@@ -547,7 +549,9 @@ StructType *StructType::create(StringRef Name, Type *type, ...) {
|
|||||||
StructFields.push_back(type);
|
StructFields.push_back(type);
|
||||||
type = va_arg(ap, llvm::Type*);
|
type = va_arg(ap, llvm::Type*);
|
||||||
}
|
}
|
||||||
return llvm::StructType::create(Ctx, StructFields, Name);
|
auto *Ret = llvm::StructType::create(Ctx, StructFields, Name);
|
||||||
|
va_end(ap);
|
||||||
|
return Ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool StructType::isSized(SmallPtrSet<const Type*, 4> *Visited) const {
|
bool StructType::isSized(SmallPtrSet<const Type*, 4> *Visited) const {
|
||||||
@@ -591,6 +595,7 @@ void StructType::setBody(Type *type, ...) {
|
|||||||
type = va_arg(ap, llvm::Type*);
|
type = va_arg(ap, llvm::Type*);
|
||||||
}
|
}
|
||||||
setBody(StructFields);
|
setBody(StructFields);
|
||||||
|
va_end(ap);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool StructType::isValidElementType(Type *ElemTy) {
|
bool StructType::isValidElementType(Type *ElemTy) {
|
||||||
|
Reference in New Issue
Block a user