[llvm] 049bb95 - [ORC] Remove an undefined static method from LLJIT.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 14 19:00:38 PDT 2020


Author: Lang Hames
Date: 2020-03-14T18:55:49-07:00
New Revision: 049bb95c5c4185611f8240249208aef82773a79d

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

LOG: [ORC] Remove an undefined static method from LLJIT.

Fixes http://llvm.org/PR44255. Thanks to Raoul Gough for finding the bug!

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h b/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
index 2f3c21b15fca..abd34cc9461f 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
@@ -53,8 +53,6 @@ class LLJIT {
                                  IRTransformLayer::TransformFunction T);
   };
 
-  static Expected<std::unique_ptr<LLJIT>> Create(LLJITBuilderState &S);
-
   /// Destruct this instance. If a multi-threaded instance, waits for all
   /// compile threads to complete.
   ~LLJIT();


        


More information about the llvm-commits mailing list