aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/ValueTypes.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-07-06 23:44:32 +0000
committerDevang Patel <dpatel@apple.com>2009-07-06 23:44:32 +0000
commitbee9e35ba25c0f1c4fba7e4b01fef29dbfd859f3 (patch)
treefb53a884ba749934502cbb1171a0a42cac7b57c6 /include/llvm/CodeGen/ValueTypes.h
parenta41a5dc3b761c175b21c3c2b18efb0edc07567de (diff)
Add new ValueType for metadata.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74882 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/ValueTypes.h')
-rw-r--r--include/llvm/CodeGen/ValueTypes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/ValueTypes.h b/include/llvm/CodeGen/ValueTypes.h
index e661c58940..f7e28bebfd 100644
--- a/include/llvm/CodeGen/ValueTypes.h
+++ b/include/llvm/CodeGen/ValueTypes.h
@@ -83,6 +83,9 @@ namespace llvm {
// This value must be a multiple of 32.
MAX_ALLOWED_VALUETYPE = 64,
+ // Metadata - This is MDNode or MDString.
+ Metadata = 251,
+
// iPTRAny - An int value the size of the pointer of the current
// target to any address space. This must only be used internal to
// tblgen. Other than for overloading, we treat iPTRAny the same as iPTR.