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 | 93044ceb33ed9ba6acaa9385725074b3cad4899f (patch) | |
tree | 9486c5db47b3b661eb15d77b56bd55f5a1fdf44a /lib/Bitcode/Reader | |
parent | 9233d6d82dfbf147a6f9a4702a4c2fadbac8e9f0 (diff) | |
download | external_llvm-93044ceb33ed9ba6acaa9385725074b3cad4899f.zip external_llvm-93044ceb33ed9ba6acaa9385725074b3cad4899f.tar.gz external_llvm-93044ceb33ed9ba6acaa9385725074b3cad4899f.tar.bz2 |
s/ParamAttrsWithIndex/FnAttributeWithIndex/g
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56535 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Reader')
-rw-r--r-- | lib/Bitcode/Reader/BitcodeReader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp index cfe2ba9..820a1e3 100644 --- a/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/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())); |