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/Target/CppBackend/CPPBackend.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/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | llvm/lib/Target/CppBackend/CPPBackend.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/CppBackend/CPPBackend.cpp b/llvm/lib/Target/CppBackend/CPPBackend.cpp index dc4e8754f7c..25ed4e02115 100644 --- a/llvm/lib/Target/CppBackend/CPPBackend.cpp +++ b/llvm/lib/Target/CppBackend/CPPBackend.cpp @@ -434,8 +434,8 @@ namespace { nl(Out); if (!PAL.isEmpty()) { Out << '{'; in(); nl(Out); - Out << "SmallVector<ParamAttrsWithIndex, 4> Attrs;"; nl(Out); - Out << "ParamAttrsWithIndex PAWI;"; nl(Out); + Out << "SmallVector<FnAttributeWithIndex, 4> Attrs;"; nl(Out); + Out << "FnAttributeWithIndex PAWI;"; nl(Out); for (unsigned i = 0; i < PAL.getNumSlots(); ++i) { uint16_t index = PAL.getSlot(i).Index; Attributes attrs = PAL.getSlot(i).Attrs; |