summaryrefslogtreecommitdiff
path: root/lib/MCA/Stages/EntryStage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/MCA/Stages/EntryStage.cpp')
-rw-r--r--lib/MCA/Stages/EntryStage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MCA/Stages/EntryStage.cpp b/lib/MCA/Stages/EntryStage.cpp
index d2f5613a0fb6..66135790a4cd 100644
--- a/lib/MCA/Stages/EntryStage.cpp
+++ b/lib/MCA/Stages/EntryStage.cpp
@@ -33,7 +33,7 @@ void EntryStage::getNextInstruction() {
if (!SM.hasNext())
return;
SourceRef SR = SM.peekNext();
- std::unique_ptr<Instruction> Inst = llvm::make_unique<Instruction>(SR.second);
+ std::unique_ptr<Instruction> Inst = std::make_unique<Instruction>(SR.second);
CurrentInstruction = InstRef(SR.first, Inst.get());
Instructions.emplace_back(std::move(Inst));
SM.updateNext();