[Orc] Remove some unnecesary includes and whitespace that slipped in to r239561.
authorLang Hames <lhames@gmail.com>
Thu, 11 Jun 2015 22:12:24 +0000 (22:12 +0000)
committerLang Hames <lhames@gmail.com>
Thu, 11 Jun 2015 22:12:24 +0000 (22:12 +0000)
NFC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239564 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ExecutionEngine/Orc/LogicalDylib.h
tools/lli/OrcLazyJIT.h

index f58c089..28700ef 100644 (file)
@@ -14,9 +14,6 @@
 #ifndef LLVM_EXECUTIONENGINE_ORC_LOGICALDYLIB_H
 #define LLVM_EXECUTIONENGINE_ORC_LOGICALDYLIB_H
 
-#include "llvm/ADT/iterator.h"
-#include "llvm/ADT/Optional.h"
-
 namespace llvm {
 namespace orc {
 
index cd48d5f..2919c08 100644 (file)
@@ -91,11 +91,10 @@ public:
     auto Resolver =
       std::shared_ptr<RuntimeDyld::SymbolResolver>(
         orc::createLambdaResolver(
-          [this](const std::string &Name) {              
+          [this](const std::string &Name) {
             if (auto Sym = CODLayer.findSymbol(Name, true))
               return RuntimeDyld::SymbolInfo(Sym.getAddress(),
                                              Sym.getFlags());
-                
             if (auto Sym = CXXRuntimeOverrides.searchOverrides(Name))
               return Sym;