From 4d97055dcf319f042253eafe6498a185e00b7126 Mon Sep 17 00:00:00 2001 From: Isaac David <61389980+orion160@users.noreply.github.com> Date: Fri, 19 Apr 2024 21:17:39 -0500 Subject: [PATCH] [DOCS] ORCv2.rst Typo --- llvm/docs/ORCv2.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/docs/ORCv2.rst b/llvm/docs/ORCv2.rst index 910ef5b9f3d02..333977a0aaa66 100644 --- a/llvm/docs/ORCv2.rst +++ b/llvm/docs/ORCv2.rst @@ -780,7 +780,7 @@ constructs a new ThreadSafeContext value from a std::unique_ptr: // separate context. for (const auto &IRPath : IRPaths) { auto Ctx = std::make_unique(); - auto M = std::make_unique("M", *Ctx); + auto M = std::make_unique("M", *Ctx); CompileLayer.add(MainJD, ThreadSafeModule(std::move(M), std::move(Ctx))); }