[llvm-commits] [llvm] r96669 - /llvm/trunk/include/llvm/Type.h
Duncan Sands
baldrick at free.fr
Fri Feb 19 01:18:54 PST 2010
Author: baldrick
Date: Fri Feb 19 03:18:53 2010
New Revision: 96669
URL: http://llvm.org/viewvc/llvm-project?rev=96669&view=rev
Log:
Correct LastPrimitiveTyID: MetadataType is a primitive type.
This change probably has no functional effect.
Modified:
llvm/trunk/include/llvm/Type.h
Modified: llvm/trunk/include/llvm/Type.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Type.h?rev=96669&r1=96668&r2=96669&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Type.h (original)
+++ llvm/trunk/include/llvm/Type.h Fri Feb 19 03:18:53 2010
@@ -89,7 +89,7 @@
VectorTyID, ///< 15: SIMD 'packed' format, or other vector type
NumTypeIDs, // Must remain as last defined ID
- LastPrimitiveTyID = LabelTyID,
+ LastPrimitiveTyID = MetadataTyID,
FirstDerivedTyID = IntegerTyID
};
More information about the llvm-commits
mailing list