From 88ec52d5808f36366e832a2d61b192714713a062 Mon Sep 17 00:00:00 2001 From: Nadav Rotem Date: Wed, 19 Sep 2012 06:24:00 +0000 Subject: [PATCH] whitespace. llvm-svn: 164203 --- llvm/lib/VMCore/Type.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/llvm/lib/VMCore/Type.cpp b/llvm/lib/VMCore/Type.cpp index 5e9a00fc085d..1a7a650989b4 100644 --- a/llvm/lib/VMCore/Type.cpp +++ b/llvm/lib/VMCore/Type.cpp @@ -220,8 +220,6 @@ Type *Type::getStructElementType(unsigned N) const { return cast(this)->getElementType(N); } - - Type *Type::getSequentialElementType() const { return cast(this)->getElementType(); } @@ -239,8 +237,6 @@ unsigned Type::getPointerAddressSpace() const { } - - //===----------------------------------------------------------------------===// // Primitive 'Type' data //===----------------------------------------------------------------------===// @@ -400,12 +396,10 @@ FunctionType *FunctionType::get(Type *ReturnType, return FT; } - FunctionType *FunctionType::get(Type *Result, bool isVarArg) { return get(Result, ArrayRef(), isVarArg); } - /// isValidReturnType - Return true if the specified type is valid as a return /// type. bool FunctionType::isValidReturnType(Type *RetTy) { @@ -553,7 +547,6 @@ StructType *StructType::create(LLVMContext &Context) { return create(Context, StringRef()); } - StructType *StructType::create(ArrayRef Elements, StringRef Name, bool isPacked) { assert(!Elements.empty() && @@ -637,7 +630,6 @@ bool StructType::isLayoutIdentical(StructType *Other) const { return std::equal(element_begin(), element_end(), Other->element_begin()); } - /// getTypeByName - Return the type with the specified name, or null if there /// is none by that name. StructType *Module::getTypeByName(StringRef Name) const { @@ -700,7 +692,6 @@ ArrayType::ArrayType(Type *ElType, uint64_t NumEl) NumElements = NumEl; } - ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) { Type *ElementType = const_cast(elementType); assert(isValidElementType(ElementType) && "Invalid type for array element!");