1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Use temporary instead of a local variable here

llvm-svn: 203914
This commit is contained in:
Alexey Samsonov 2014-03-14 10:20:10 +00:00
parent f2a05b4899
commit 165e747f63

View File

@ -51,8 +51,7 @@ DWARFAbbreviationDeclaration::extract(DataExtractor Data, uint32_t* OffsetPtr) {
}
if (Attr == 0 && Form == 0)
break;
AttributeSpec AS = {Attr, Form};
AttributeSpecs.push_back(AS);
AttributeSpecs.push_back(AttributeSpec{Attr, Form});
}
if (Tag == 0) {