mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
It seems logical that InReg should be incompatible
with StructReturn and ByVal, so make it so. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40554 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fdef00f1f7
commit
9d3e79107d
@ -365,7 +365,8 @@ void Verifier::visitFunction(Function &F) {
|
||||
ParamAttr::NoReturn | ParamAttr::NoUnwind;
|
||||
|
||||
const uint16_t MutuallyIncompatible =
|
||||
ParamAttr::ByVal | ParamAttr::Nest | ParamAttr::StructRet;
|
||||
ParamAttr::ByVal | ParamAttr::InReg |
|
||||
ParamAttr::Nest | ParamAttr::StructRet;
|
||||
|
||||
const uint16_t IntegerTypeOnly =
|
||||
ParamAttr::SExt | ParamAttr::ZExt;
|
||||
@ -417,8 +418,6 @@ void Verifier::visitFunction(Function &F) {
|
||||
if (Attrs->paramHasAttr(Idx, ParamAttr::Nest)) {
|
||||
Assert1(!SawNest, "More than one parameter has attribute nest!", &F);
|
||||
SawNest = true;
|
||||
Assert1(!Attrs->paramHasAttr(Idx, ParamAttr::InReg),
|
||||
"Attributes nest and inreg are incompatible!", &F);
|
||||
}
|
||||
|
||||
if (Attrs->paramHasAttr(Idx, ParamAttr::StructRet)) {
|
||||
|
Loading…
Reference in New Issue
Block a user