Simplify CallInst::hasByValArgument using a new method.

llvm-svn: 45974
This commit is contained in:
Duncan Sands 2008-01-14 19:57:00 +00:00
parent b5ca2e9fcb
commit 38987c1dcc
1 changed files with 1 additions and 4 deletions

View File

@ -406,10 +406,7 @@ bool CallInst::isStructReturn() const {
/// @brief Determine if any call argument is an aggregate passed by value.
bool CallInst::hasByValArgument() const {
for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
if (paramHasAttr(i, ParamAttr::ByVal))
return true;
return false;
return ParamAttrs && ParamAttrs->hasAttrSomewhere(ParamAttr::ByVal);
}
void CallInst::setDoesNotThrow(bool doesNotThrow) {