mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Fix an obvious error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75611 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
03e9dd9ffa
commit
a573f59628
@ -159,8 +159,8 @@ const Type *MVT::getTypeForMVT(LLVMContext &Context) const {
|
||||
case MVT::v32i8: return Context.getVectorType(Type::Int8Ty, 32);
|
||||
case MVT::v2i16: return Context.getVectorType(Type::Int16Ty, 2);
|
||||
case MVT::v4i16: return Context.getVectorType(Type::Int16Ty, 4);
|
||||
case MVT::v8i16: return Context.getVectorType(Type::Int16Ty, 16);
|
||||
case MVT::v16i16: return Context.getVectorType(Type::Int16Ty, 8);
|
||||
case MVT::v8i16: return Context.getVectorType(Type::Int16Ty, 8);
|
||||
case MVT::v16i16: return Context.getVectorType(Type::Int16Ty, 16);
|
||||
case MVT::v2i32: return Context.getVectorType(Type::Int32Ty, 2);
|
||||
case MVT::v3i32: return Context.getVectorType(Type::Int32Ty, 3);
|
||||
case MVT::v4i32: return Context.getVectorType(Type::Int32Ty, 4);
|
||||
@ -202,4 +202,4 @@ MVT MVT::getMVT(const Type *Ty, bool HandleUnknown){
|
||||
VTy->getNumElements());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user