diff options
author | Devang Patel <dpatel@apple.com> | 2008-09-24 00:55:02 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-09-24 00:55:02 +0000 |
commit | 6402c7236f24785cb56ab4db7275c80b16981ed5 (patch) | |
tree | 3f41842f9827698be9e1c70248f6365361195032 /llvm/lib/VMCore/Function.cpp | |
parent | 423b4f24c82fbbe36269e61f752ac9ff1b7e01e8 (diff) | |
download | bcm5719-llvm-6402c7236f24785cb56ab4db7275c80b16981ed5.tar.gz bcm5719-llvm-6402c7236f24785cb56ab4db7275c80b16981ed5.zip |
s/ParamAttrsWithIndex/FnAttributeWithIndex/g
llvm-svn: 56535
Diffstat (limited to 'llvm/lib/VMCore/Function.cpp')
-rw-r--r-- | llvm/lib/VMCore/Function.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Function.cpp b/llvm/lib/VMCore/Function.cpp index d1e577ed7d8..2602443ab9f 100644 --- a/llvm/lib/VMCore/Function.cpp +++ b/llvm/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); } |