diff options
| author | Chris Lattner <sabre@nondot.org> | 2011-08-12 17:43:05 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2011-08-12 17:43:05 +0000 |
| commit | 8a2f747546c303cfec8bb4b013c45c915ea7e27f (patch) | |
| tree | 10daf7a23e816e4423ab58bf46c3aee857577e7e /llvm | |
| parent | 26a9d23657ace855c0f8f67d33f7c0e4f56a47be (diff) | |
| download | bcm5719-llvm-8a2f747546c303cfec8bb4b013c45c915ea7e27f.tar.gz bcm5719-llvm-8a2f747546c303cfec8bb4b013c45c915ea7e27f.zip | |
add two missing function impls
llvm-svn: 137470
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/DerivedTypes.h | 2 | ||||
| -rw-r--r-- | llvm/lib/VMCore/Type.cpp | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/llvm/include/llvm/DerivedTypes.h b/llvm/include/llvm/DerivedTypes.h index ff5ee6575e1..408014e7742 100644 --- a/llvm/include/llvm/DerivedTypes.h +++ b/llvm/include/llvm/DerivedTypes.h @@ -256,7 +256,7 @@ public: /// isLiteral - Return true if this type is uniqued by structural /// equivalence, false if it is a struct definition. - bool isLiteral() const {return (getSubclassData() & SCDB_IsLiteral) != 0;} + bool isLiteral() const { return (getSubclassData() & SCDB_IsLiteral) != 0; } /// isOpaque - Return true if this is a type with an identity that has no body /// specified yet. These prints as 'opaque' in .ll files. diff --git a/llvm/lib/VMCore/Type.cpp b/llvm/lib/VMCore/Type.cpp index f7ba59606ab..51e6006eee4 100644 --- a/llvm/lib/VMCore/Type.cpp +++ b/llvm/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<Type*>(), isPacked); } @@ -489,6 +496,10 @@ StructType *StructType::create(LLVMContext &Context, ArrayRef<Type*> Elements) { return create(Context, Elements, StringRef()); } +StructType *StructType::create(LLVMContext &Context) { + return create(Context, ArrayRef<Type*>(), StringRef()); +} + StructType *StructType::create(ArrayRef<Type*> Elements, StringRef Name, bool isPacked) { |

