diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-09-07 20:03:56 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-09-07 20:03:56 +0000 |
commit | d8dd5757e0e31c55bb15498aa1d75fad08850c5a (patch) | |
tree | 89c515bda29bf2be1ce6e391d7e189921c182eaf /utils/TableGen/CodeGenTarget.cpp | |
parent | 979ed44feb1be70e641275aaef5460320fab86a3 (diff) |
Add an MVT::x86mmx type. It will take the place of all current MMX vector types.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenTarget.cpp')
-rw-r--r-- | utils/TableGen/CodeGenTarget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/TableGen/CodeGenTarget.cpp b/utils/TableGen/CodeGenTarget.cpp index b7aa900101..091a32fb3f 100644 --- a/utils/TableGen/CodeGenTarget.cpp +++ b/utils/TableGen/CodeGenTarget.cpp @@ -63,6 +63,7 @@ std::string llvm::getEnumName(MVT::SimpleValueType T) { case MVT::f80: return "MVT::f80"; case MVT::f128: return "MVT::f128"; case MVT::ppcf128: return "MVT::ppcf128"; + case MVT::x86mmx: return "MVT::x86mmx"; case MVT::Flag: return "MVT::Flag"; case MVT::isVoid: return "MVT::isVoid"; case MVT::v2i8: return "MVT::v2i8"; |