summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2014-03-14 10:37:36 +0000
committerAlexey Samsonov <samsonov@google.com>2014-03-14 10:37:36 +0000
commit4d97203add074ca5c4dd4b93241e6ddf57b1ce02 (patch)
treeff1ed8cdbdc3c4ae36cb47c8321e321c17b9be67 /llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp
parent3e13ef529691caead77b8be5cd47237b6aba9ad3 (diff)
downloadbcm5719-llvm-4d97203add074ca5c4dd4b93241e6ddf57b1ce02.tar.gz
bcm5719-llvm-4d97203add074ca5c4dd4b93241e6ddf57b1ce02.zip
Use ctor instead of initializer list to appease Windows buildbots
llvm-svn: 203915
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp')
-rw-r--r--llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp b/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp
index ebd5bef377e..c3e570e14cc 100644
--- a/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp
+++ b/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp
@@ -51,7 +51,7 @@ DWARFAbbreviationDeclaration::extract(DataExtractor Data, uint32_t* OffsetPtr) {
}
if (Attr == 0 && Form == 0)
break;
- AttributeSpecs.push_back(AttributeSpec{Attr, Form});
+ AttributeSpecs.push_back(AttributeSpec(Attr, Form));
}
if (Tag == 0) {
OpenPOWER on IntegriCloud