From f4bbcaabebe19840de27bd414ff79da9219b4bd1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 12 Aug 2011 17:43:05 +0000 Subject: add two missing function impls git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137470 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Type.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'lib') diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index f7ba59606a..51e6006eee 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -461,6 +461,13 @@ void StructType::setName(StringRef Name) { //===----------------------------------------------------------------------===// // StructType Helper functions. +StructType *StructType::create(LLVMContext &Context, StringRef Name) { + StructType *ST = new (Context.pImpl->TypeAllocator) StructType(Context); + if (!Name.empty()) + ST->setName(Name); + return ST; +} + StructType *StructType::get(LLVMContext &Context, bool isPacked) { return get(Context, llvm::ArrayRef(), isPacked); } @@ -489,6 +496,10 @@ StructType *StructType::create(LLVMContext &Context, ArrayRef Elements) { return create(Context, Elements, StringRef()); } +StructType *StructType::create(LLVMContext &Context) { + return create(Context, ArrayRef(), StringRef()); +} + StructType *StructType::create(ArrayRef Elements, StringRef Name, bool isPacked) { -- cgit v1.2.3-70-g09d2