mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-02 22:32:08 +00:00
forward to the correct constructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137479 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2e85b1bfa7
commit
8dcfc74af4
@ -487,7 +487,7 @@ StructType *StructType::get(Type *type, ...) {
|
||||
|
||||
StructType *StructType::create(LLVMContext &Context, ArrayRef<Type*> Elements,
|
||||
StringRef Name, bool isPacked) {
|
||||
StructType *ST = createNamed(Context, Name);
|
||||
StructType *ST = create(Context, Name);
|
||||
ST->setBody(Elements, isPacked);
|
||||
return ST;
|
||||
}
|
||||
@ -497,7 +497,7 @@ StructType *StructType::create(LLVMContext &Context, ArrayRef<Type*> Elements) {
|
||||
}
|
||||
|
||||
StructType *StructType::create(LLVMContext &Context) {
|
||||
return create(Context, ArrayRef<Type*>(), StringRef());
|
||||
return create(Context, StringRef());
|
||||
}
|
||||
|
||||
|
||||
@ -530,7 +530,6 @@ StructType *StructType::create(StringRef Name, Type *type, ...) {
|
||||
|
||||
|
||||
|
||||
|
||||
StructType *StructType::createNamed(LLVMContext &Context, StringRef Name,
|
||||
ArrayRef<Type*> Elements, bool isPacked) {
|
||||
StructType *ST = createNamed(Context, Name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user