diff options
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/X86/Target.cpp')
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/X86/Target.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/X86/Target.cpp b/llvm/tools/llvm-exegesis/lib/X86/Target.cpp index 21d424a4bee..cebcb1c1aea 100644 --- a/llvm/tools/llvm-exegesis/lib/X86/Target.cpp +++ b/llvm/tools/llvm-exegesis/lib/X86/Target.cpp @@ -453,12 +453,12 @@ private: std::unique_ptr<SnippetGenerator> createLatencySnippetGenerator(const LLVMState &State) const override { - return llvm::make_unique<X86LatencySnippetGenerator>(State); + return std::make_unique<X86LatencySnippetGenerator>(State); } std::unique_ptr<SnippetGenerator> createUopsSnippetGenerator(const LLVMState &State) const override { - return llvm::make_unique<X86UopsSnippetGenerator>(State); + return std::make_unique<X86UopsSnippetGenerator>(State); } bool matchesArch(llvm::Triple::ArchType Arch) const override { |