Check that sret is only used on pointers to types

with a size, like byval.

llvm-svn: 46207
This commit is contained in:
Duncan Sands 2008-01-21 11:28:49 +00:00
parent a59f396cba
commit 262e54eb7b
1 changed files with 2 additions and 2 deletions

View File

@ -202,8 +202,8 @@ uint16_t ParamAttr::typeIncompatible (const Type *Ty) {
if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
if (!PTy->getElementType()->isSized())
// The byval attribute only applies to pointers to types with a size.
Incompatible |= ParamAttr::ByVal;
// The byval and sret attributes only apply to pointers to sized types.
Incompatible |= ByVal | StructRet;
} else {
// Attributes that only apply to pointers.
Incompatible |= ByVal | Nest | NoAlias | StructRet;