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:
Duncan Sands 2007-07-27 16:45:18 +00:00
parent fdef00f1f7
commit 9d3e79107d

View File

@ -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)) {