[llvm] b7543c4 - [ORC] Fix an 80 column violation.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 11 09:53:26 PDT 2021


Author: Lang Hames
Date: 2021-10-11T09:53:16-07:00
New Revision: b7543c485d22bdd57d758f5a461ae99fd5b1f3aa

URL: https://github.com/llvm/llvm-project/commit/b7543c485d22bdd57d758f5a461ae99fd5b1f3aa
DIFF: https://github.com/llvm/llvm-project/commit/b7543c485d22bdd57d758f5a461ae99fd5b1f3aa.diff

LOG: [ORC] Fix an 80 column violation.

Added: 
    

Modified: 
    llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h b/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h
index 46f33813be517..513d3cfc18e64 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h
@@ -37,8 +37,8 @@ class SimpleRemoteEPC : public ExecutorProcessControl,
   Create(std::unique_ptr<TaskDispatcher> D,
          TransportTCtorArgTs &&...TransportTCtorArgs) {
     std::unique_ptr<SimpleRemoteEPC> SREPC(
-                                           new SimpleRemoteEPC(std::make_shared<SymbolStringPool>(),
-                                                               std::move(D)));
+        new SimpleRemoteEPC(std::make_shared<SymbolStringPool>(),
+                            std::move(D)));
     auto T = TransportT::Create(
         *SREPC, std::forward<TransportTCtorArgTs>(TransportTCtorArgs)...);
     if (!T)


        


More information about the llvm-commits mailing list