diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2015-01-22 20:14:38 +0000 |
---|---|---|
committer | Ramkumar Ramachandra <artagnon@gmail.com> | 2015-01-22 20:14:38 +0000 |
commit | 75a4f35b2640b604f59c6df3b7dbe043c195cacd (patch) | |
tree | 2c5353db66f3baa6f006cb71f08abcd76df0a16d /llvm/utils/TableGen/CodeGenTarget.cpp | |
parent | 49b71c609c0f8c008ac8d7ea9d9cce69858047b5 (diff) | |
download | bcm5719-llvm-75a4f35b2640b604f59c6df3b7dbe043c195cacd.tar.gz bcm5719-llvm-75a4f35b2640b604f59c6df3b7dbe043c195cacd.zip |
Intrinsics: introduce llvm_any_ty aka ValueType Any
Specifically, gc.result benefits from this greatly. Instead of:
gc.result.int.*
gc.result.float.*
gc.result.ptr.*
...
We now have a gc.result.* that can specialize to literally any type.
Differential Revision: http://reviews.llvm.org/D7020
llvm-svn: 226857
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.cpp b/llvm/utils/TableGen/CodeGenTarget.cpp index e727a0e3f7a..47c8e0bd36f 100644 --- a/llvm/utils/TableGen/CodeGenTarget.cpp +++ b/llvm/utils/TableGen/CodeGenTarget.cpp @@ -57,6 +57,7 @@ std::string llvm::getEnumName(MVT::SimpleValueType T) { case MVT::i32: return "MVT::i32"; case MVT::i64: return "MVT::i64"; case MVT::i128: return "MVT::i128"; + case MVT::Any: return "MVT::Any"; case MVT::iAny: return "MVT::iAny"; case MVT::fAny: return "MVT::fAny"; case MVT::vAny: return "MVT::vAny"; |