diff options
Diffstat (limited to 'llvm/unittests/CodeGen/GlobalISel/GISelMITest.h')
-rw-r--r-- | llvm/unittests/CodeGen/GlobalISel/GISelMITest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/CodeGen/GlobalISel/GISelMITest.h b/llvm/unittests/CodeGen/GlobalISel/GISelMITest.h index 37188760c1d..0af63b70eec 100644 --- a/llvm/unittests/CodeGen/GlobalISel/GISelMITest.h +++ b/llvm/unittests/CodeGen/GlobalISel/GISelMITest.h @@ -111,7 +111,7 @@ body: | )MIR") + Twine(MIRFunc) + Twine("...\n")) .toNullTerminatedStringRef(S); std::unique_ptr<MIRParser> MIR; - auto MMI = make_unique<MachineModuleInfo>(&TM); + auto MMI = std::make_unique<MachineModuleInfo>(&TM); std::unique_ptr<Module> M = parseMIR(Context, MIR, TM, MIRString, "func", *MMI); return make_pair(std::move(M), std::move(MMI)); |