From ae5a0b53782b1219af0017649f0b6a7b5b24752e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 16 Jun 2011 21:00:43 +0000 Subject: [PATCH] remove Type::getVAArgsPromotedType, which is dead, and tidy up a bit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133190 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/DerivedTypes.h | 2 +- include/llvm/Type.h | 17 +++++++---------- lib/VMCore/Type.cpp | 9 --------- 3 files changed, 8 insertions(+), 20 deletions(-) diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h index f1cb33039f..cfc73aca3e 100644 --- a/include/llvm/DerivedTypes.h +++ b/include/llvm/DerivedTypes.h @@ -103,7 +103,7 @@ public: /// that instance will be returned. Otherwise a new one will be created. Only /// one instance with a given NumBits value is ever created. /// @brief Get or create an IntegerType instance. - static const IntegerType* get(LLVMContext &C, unsigned NumBits); + static const IntegerType *get(LLVMContext &C, unsigned NumBits); /// @brief Get the number of bits in this IntegerType unsigned getBitWidth() const { return getSubclassData(); } diff --git a/include/llvm/Type.h b/include/llvm/Type.h index 3bda91d663..5a3413ac3d 100644 --- a/include/llvm/Type.h +++ b/include/llvm/Type.h @@ -6,6 +6,11 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// +// +// This file contains the declaration of the Type class. For more "Type" +// stuff, look in DerivedTypes.h. +// +//===----------------------------------------------------------------------===// #ifndef LLVM_TYPE_H #define LLVM_TYPE_H @@ -26,9 +31,6 @@ class raw_ostream; class Module; class LLVMContext; -/// This file contains the declaration of the Type class. For more "Type" type -/// stuff, look in DerivedTypes.h. -/// /// The instances of the Type class are immutable: once they are created, /// they are never changed. Also note that only one instance of a particular /// type is ever created. Thus seeing if two types are equal is a matter of @@ -72,7 +74,7 @@ public: DoubleTyID, ///< 2: 64 bit floating point type X86_FP80TyID, ///< 3: 80 bit floating point type (X87) FP128TyID, ///< 4: 128 bit floating point type (112-bit mantissa) - PPC_FP128TyID, ///< 5: 128 bit floating point type (two 64-bits) + PPC_FP128TyID, ///< 5: 128 bit floating point type (two 64-bits, PowerPC) LabelTyID, ///< 6: Labels MetadataTyID, ///< 7: Metadata X86_MMXTyID, ///< 8: MMX vectors (64 bits) @@ -359,11 +361,6 @@ public: return getForwardedTypeInternal(); } - /// getVAArgsPromotedType - Return the type an argument of this type - /// will be promoted to if passed through a variable argument - /// function. - const Type *getVAArgsPromotedType(LLVMContext &C) const; - /// getScalarType - If this is a vector type, return the element type, /// otherwise return this. const Type *getScalarType() const; @@ -506,7 +503,7 @@ inline void PATypeHandle::removeUser() { /// type we are pointing to is forwarding to a new type. If so, we drop our /// reference to the type. /// -inline Type* PATypeHolder::get() const { +inline Type *PATypeHolder::get() const { if (Ty == 0) return 0; const Type *NewTy = Ty->getForwardedType(); if (!NewTy) return const_cast(Ty); diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index e4496db431..9f75c8b6d1 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -116,15 +116,6 @@ const Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { } } -const Type *Type::getVAArgsPromotedType(LLVMContext &C) const { - if (ID == IntegerTyID && getSubclassData() < 32) - return Type::getInt32Ty(C); - else if (ID == FloatTyID) - return Type::getDoubleTy(C); - else - return this; -} - /// getScalarType - If this is a vector type, return the element type, /// otherwise return this. const Type *Type::getScalarType() const { -- 2.11.4.GIT