remove Type::getVAArgsPromotedType, which is dead, and tidy up a bit.
authorChris Lattner <sabre@nondot.org>
Thu, 16 Jun 2011 21:00:43 +0000 (21:00 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 16 Jun 2011 21:00:43 +0000 (21:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133190 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/DerivedTypes.h
include/llvm/Type.h
lib/VMCore/Type.cpp

index f1cb33039f812462d2bbc76eb0f0da1dd2ef0341..cfc73aca3e78fd33457581889a55dd2ed7107ea0 100644 (file)
@@ -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 IntegerTypeget(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(); }
index 3bda91d6638f99b19321755c8930be0962e03bc0..5a3413ac3d7def04132b97fc08e00f4e9ca9a48b 100644 (file)
@@ -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 TypePATypeHolder::get() const {
+inline Type *PATypeHolder::get() const {
   if (Ty == 0) return 0;
   const Type *NewTy = Ty->getForwardedType();
   if (!NewTy) return const_cast<Type*>(Ty);
index e4496db4317f51aad7940e2dc2906240af8f1f43..9f75c8b6d1aadce4c1d03a5e3dd0bbbf7e984495 100644 (file)
@@ -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 {