aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/AVR/AVRTargetMachine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/AVR/AVRTargetMachine.cpp')
-rw-r--r--lib/Target/AVR/AVRTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/AVR/AVRTargetMachine.cpp b/lib/Target/AVR/AVRTargetMachine.cpp
index a36c8b0f9649..25304280d002 100644
--- a/lib/Target/AVR/AVRTargetMachine.cpp
+++ b/lib/Target/AVR/AVRTargetMachine.cpp
@@ -50,7 +50,7 @@ AVRTargetMachine::AVRTargetMachine(const Target &T, const Triple &TT,
getEffectiveRelocModel(RM),
getEffectiveCodeModel(CM, CodeModel::Small), OL),
SubTarget(TT, getCPU(CPU), FS, *this) {
- this->TLOF = make_unique<AVRTargetObjectFile>();
+ this->TLOF = std::make_unique<AVRTargetObjectFile>();
initAsmInfo();
}