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/Bitcode/Writer/BitcodeWriter.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/Bitcode/Writer/BitcodeWriter.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp index 931e944a410..baacbddf96e 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -119,7 +119,7 @@ static void WriteParamAttrTable(const ValueEnumerator &VE, for (unsigned i = 0, e = Attrs.size(); i != e; ++i) { const PAListPtr &A = Attrs[i]; for (unsigned i = 0, e = A.getNumSlots(); i != e; ++i) { - const ParamAttrsWithIndex &PAWI = A.getSlot(i); + const FnAttributeWithIndex &PAWI = A.getSlot(i); Record.push_back(PAWI.Index); Record.push_back(PAWI.Attrs); } |