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/Reader/BitcodeReader.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/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index cfe2ba95441..820a1e38477 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -322,7 +322,7 @@ bool BitcodeReader::ParseParamAttrBlock() { SmallVector<uint64_t, 64> Record; - SmallVector<ParamAttrsWithIndex, 8> Attrs; + SmallVector<FnAttributeWithIndex, 8> Attrs; // Read all the records. while (1) { @@ -357,7 +357,7 @@ bool BitcodeReader::ParseParamAttrBlock() { for (unsigned i = 0, e = Record.size(); i != e; i += 2) { if (Record[i+1] != ParamAttr::None) - Attrs.push_back(ParamAttrsWithIndex::get(Record[i], Record[i+1])); + Attrs.push_back(FnAttributeWithIndex::get(Record[i], Record[i+1])); } ParamAttrs.push_back(PAListPtr::get(Attrs.begin(), Attrs.end())); |