1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Add x86mmx to TableGen.

llvm-svn: 113671
This commit is contained in:
Dale Johannesen 2010-09-11 00:16:46 +00:00
parent 038bcd275f
commit 9dad72e011

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!");
}