projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38d96ab
)
Use the AttributeSet instead of AttributeWithIndex object.
author
Bill Wendling
<isanbard@gmail.com>
Sun, 27 Jan 2013 00:36:48 +0000
(
00:36
+0000)
committer
Bill Wendling
<isanbard@gmail.com>
Sun, 27 Jan 2013 00:36:48 +0000
(
00:36
+0000)
llvm-svn: 173598
llvm/lib/Bitcode/Reader/BitcodeReader.cpp
patch
|
blob
|
history
diff --git
a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
index
4190161
..
2e1a512
100644
(file)
--- a/
llvm/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/
llvm/lib/Bitcode/Reader/BitcodeReader.cpp
@@
-437,7
+437,7
@@
bool BitcodeReader::ParseAttributeBlock() {
SmallVector<uint64_t, 64> Record;
- SmallVector<Attribute
WithIndex
, 8> Attrs;
+ SmallVector<Attribute
Set
, 8> Attrs;
// Read all the records.
while (1) {
@@
-472,8
+472,7
@@
bool BitcodeReader::ParseAttributeBlock() {
for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
AttrBuilder B(Record[i+1]);
if (B.hasAttributes())
- Attrs.push_back(AttributeWithIndex::get(Record[i],
- Attribute::get(Context, B)));
+ Attrs.push_back(AttributeSet::get(Context, Record[i], B));
}
MAttributes.push_back(AttributeSet::get(Context, Attrs));