From 049bb95c5c4185611f8240249208aef82773a79d Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Sat, 14 Mar 2020 18:55:49 -0700 Subject: [PATCH] [ORC] Remove an undefined static method from LLJIT. Fixes http://llvm.org/PR44255. Thanks to Raoul Gough for finding the bug! --- llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h b/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h index 2f3c21b..abd34cc 100644 --- a/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h +++ b/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h @@ -53,8 +53,6 @@ public: IRTransformLayer::TransformFunction T); }; - static Expected> Create(LLJITBuilderState &S); - /// Destruct this instance. If a multi-threaded instance, waits for all /// compile threads to complete. ~LLJIT(); -- 2.7.4