diff options
Diffstat (limited to 'llvm/unittests')
| -rw-r--r-- | llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp b/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp index 7510bc5415e..5640cece4ea 100644 --- a/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp +++ b/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp @@ -61,7 +61,8 @@ void dwarfgen::DIE::addAttribute(uint16_t A, dwarf::Form Form,    auto &DG = CU->getGenerator();    if (Form == DW_FORM_string) {      Die->addValue(DG.getAllocator(), static_cast<dwarf::Attribute>(A), Form, -                  new (DG.getAllocator()) DIEInlineString(String)); +                  new (DG.getAllocator()) +                      DIEInlineString(String, DG.getAllocator()));    } else {      Die->addValue(          DG.getAllocator(), static_cast<dwarf::Attribute>(A), Form,  | 

