Add x86mmx to TableGen.

llvm-svn: 113671
This commit is contained in:
Dale Johannesen 2010-09-11 00:16:46 +00:00
parent 27dddd1fd1
commit 3a12890338
1 changed files with 2 additions and 0 deletions

View File

@ -192,6 +192,8 @@ static void EmitTypeForValueType(raw_ostream &OS, MVT::SimpleValueType VT) {
OS << "Type::getVoidTy(Context)";
} else if (VT == MVT::Metadata) {
OS << "Type::getMetadataTy(Context)";
} else if (VT == MVT::x86mmx) {
OS << "Type::getX86_MMXTy(Context)";
} else {
assert(false && "Unsupported ValueType!");
}