OSDN Git Service

[ExecutionEngine] Fix examples build broken in r287126 and other Include What You...
authorEugene Zelenko <eugene.zelenko@gmail.com>
Wed, 16 Nov 2016 18:32:58 +0000 (18:32 +0000)
committerEugene Zelenko <eugene.zelenko@gmail.com>
Wed, 16 Nov 2016 18:32:58 +0000 (18:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287130 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h

index bda4cd1..f6226bc 100644 (file)
 
 #include "OrcRemoteTargetRPCAPI.h"
 #include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
+#include "llvm/ExecutionEngine/JITSymbol.h"
+#include "llvm/ExecutionEngine/Orc/OrcError.h"
 #include "llvm/Support/Debug.h"
+#include "llvm/Support/Error.h"
 #include "llvm/Support/Format.h"
+#include "llvm/Support/Host.h"
+#include "llvm/Support/Memory.h"
 #include "llvm/Support/Process.h"
 #include "llvm/Support/raw_ostream.h"
+#include <algorithm>
+#include <cassert>
+#include <cstddef>
+#include <cstdint>
+#include <functional>
 #include <map>
+#include <memory>
+#include <string>
+#include <system_error>
+#include <tuple>
+#include <type_traits>
+#include <vector>
 
 #define DEBUG_TYPE "orc-remote"