summaryrefslogtreecommitdiff
path: root/include/llvm/Type.h
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-02-19 09:18:53 +0000
committerDuncan Sands <baldrick@free.fr>2010-02-19 09:18:53 +0000
commitd03502318d32a161b029d51073e513d7c226d77b (patch)
tree805a6787ad50cd5c045ac1c9d59e82f67e251f4e /include/llvm/Type.h
parent906b4995eeab9e6b6fd11a492498c95bba1ce0af (diff)
downloadllvm-d03502318d32a161b029d51073e513d7c226d77b.tar.gz
llvm-d03502318d32a161b029d51073e513d7c226d77b.tar.bz2
llvm-d03502318d32a161b029d51073e513d7c226d77b.tar.xz
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
Diffstat (limited to 'include/llvm/Type.h')
-rw-r--r--include/llvm/Type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h
index 74f7a606ff..d09913a1df 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
};