diff options
Diffstat (limited to 'lib/VMCore/Function.cpp')
-rw-r--r-- | lib/VMCore/Function.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index d1e577ed7d..2602443ab9 100644 --- a/lib/VMCore/Function.cpp +++ b/lib/VMCore/Function.cpp @@ -365,7 +365,7 @@ PAListPtr Intrinsic::getParamAttrs(ID id) { // Intrinsics cannot throw exceptions. Attr |= ParamAttr::NoUnwind; - ParamAttrsWithIndex PAWI = ParamAttrsWithIndex::get(0, Attr); + FnAttributeWithIndex PAWI = FnAttributeWithIndex::get(0, Attr); return PAListPtr::get(&PAWI, 1); } |