mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Change AsmOperandInfo::ConstraintVT to MVT, instead of EVT.
Accordingly, add MVT::getVT. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170550 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -2935,10 +2935,10 @@ TargetLowering::AsmOperandInfoVector TargetLowering::ParseConstraints(
|
||||
assert(!CS.getType()->isVoidTy() &&
|
||||
"Bad inline asm!");
|
||||
if (StructType *STy = dyn_cast<StructType>(CS.getType())) {
|
||||
OpInfo.ConstraintVT = getValueType(STy->getElementType(ResNo));
|
||||
OpInfo.ConstraintVT = getSimpleValueType(STy->getElementType(ResNo));
|
||||
} else {
|
||||
assert(ResNo == 0 && "Asm only has one result!");
|
||||
OpInfo.ConstraintVT = getValueType(CS.getType());
|
||||
OpInfo.ConstraintVT = getSimpleValueType(CS.getType());
|
||||
}
|
||||
++ResNo;
|
||||
break;
|
||||
@@ -2977,14 +2977,14 @@ TargetLowering::AsmOperandInfoVector TargetLowering::ParseConstraints(
|
||||
case 64:
|
||||
case 128:
|
||||
OpInfo.ConstraintVT =
|
||||
EVT::getEVT(IntegerType::get(OpTy->getContext(), BitSize), true);
|
||||
MVT::getVT(IntegerType::get(OpTy->getContext(), BitSize), true);
|
||||
break;
|
||||
}
|
||||
} else if (PointerType *PT = dyn_cast<PointerType>(OpTy)) {
|
||||
OpInfo.ConstraintVT = MVT::getIntegerVT(
|
||||
8*TD->getPointerSize(PT->getAddressSpace()));
|
||||
} else {
|
||||
OpInfo.ConstraintVT = EVT::getEVT(OpTy, true);
|
||||
OpInfo.ConstraintVT = MVT::getVT(OpTy, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user