From: Duncan Sands Date: Fri, 19 Feb 2010 09:18:53 +0000 (+0000) Subject: Correct LastPrimitiveTyID: MetadataType is a primitive type. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d03502318d32a161b029d51073e513d7c226d77b;p=oota-llvm.git Correct LastPrimitiveTyID: MetadataType is a primitive type. This change probably has no functional effect. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96669 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Type.h b/include/llvm/Type.h index 74f7a606ff6..d09913a1df3 100644 --- a/include/llvm/Type.h +++ b/include/llvm/Type.h @@ -89,7 +89,7 @@ public: VectorTyID, ///< 15: SIMD 'packed' format, or other vector type NumTypeIDs, // Must remain as last defined ID - LastPrimitiveTyID = LabelTyID, + LastPrimitiveTyID = MetadataTyID, FirstDerivedTyID = IntegerTyID };