diff options
-rw-r--r-- | llvm/lib/MC/XCOFFObjectWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/XCOFFObjectWriter.cpp b/llvm/lib/MC/XCOFFObjectWriter.cpp index f2c054f65cc..6b975ddfa90 100644 --- a/llvm/lib/MC/XCOFFObjectWriter.cpp +++ b/llvm/lib/MC/XCOFFObjectWriter.cpp @@ -156,8 +156,8 @@ class XCOFFObjectWriter : public MCObjectWriter { // CsectGroups. These store the csects which make up different parts of // the sections. Should have one for each set of csects that get mapped into // the same section and get handled in a 'similar' way. - CsectGroup ProgramCodeCsects{CsectGroup::LabelDefSupported}; - CsectGroup BSSCsects{CsectGroup::LabelDefUnsupported}; + CsectGroup ProgramCodeCsects{CsectGroup::LabelDefSupported, {}}; + CsectGroup BSSCsects{CsectGroup::LabelDefUnsupported, {}}; // The Predefined sections. Section Text; |