diff options
Diffstat (limited to 'llvm/unittests/MC/DwarfLineTables.cpp')
-rw-r--r-- | llvm/unittests/MC/DwarfLineTables.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/MC/DwarfLineTables.cpp b/llvm/unittests/MC/DwarfLineTables.cpp index af1250daee5..88e9565e1ca 100644 --- a/llvm/unittests/MC/DwarfLineTables.cpp +++ b/llvm/unittests/MC/DwarfLineTables.cpp @@ -38,7 +38,7 @@ struct Context { MRI.reset(TheTarget->createMCRegInfo(Triple)); MAI.reset(TheTarget->createMCAsmInfo(*MRI, Triple)); - Ctx = llvm::make_unique<MCContext>(MAI.get(), MRI.get(), nullptr); + Ctx = std::make_unique<MCContext>(MAI.get(), MRI.get(), nullptr); } operator bool() { return Ctx.get(); } |