Skip to content

Commit 5343c72

Browse files
committed
[rebranch] Fix missing includes
1 parent 30be511 commit 5343c72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/IRGen/IRGen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
#include "llvm/IR/Verifier.h"
6363
#include "llvm/Linker/Linker.h"
6464
#include "llvm/MC/SubtargetFeature.h"
65+
#include "llvm/MC/TargetRegistry.h"
6566
#include "llvm/Object/ObjectFile.h"
6667
#include "llvm/Support/CommandLine.h"
6768
#include "llvm/Support/Debug.h"
@@ -71,7 +72,6 @@
7172
#include "llvm/Support/MD5.h"
7273
#include "llvm/Support/Mutex.h"
7374
#include "llvm/Support/Path.h"
74-
#include "llvm/Support/TargetRegistry.h"
7575
#include "llvm/Target/TargetMachine.h"
7676
#include "llvm/Transforms/Coroutines.h"
7777
#include "llvm/Transforms/IPO.h"

lib/Immediate/Immediate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include "llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h"
3535
#include "llvm/ExecutionEngine/Orc/LLJIT.h"
3636
#include "llvm/ExecutionEngine/Orc/ObjectTransformLayer.h"
37-
#include "llvm/ExecutionEngine/Orc/OrcRPCExecutorProcessControl.h"
37+
#include "llvm/ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.h"
3838
#include "llvm/IR/LLVMContext.h"
3939
#include "llvm/Transforms/IPO.h"
4040
#include "llvm/Transforms/IPO/PassManagerBuilder.h"

tools/swift-llvm-opt/LLVMOpt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
#include "llvm/LinkAllIR.h"
5252
#include "llvm/LinkAllPasses.h"
5353
#include "llvm/MC/SubtargetFeature.h"
54+
#include "llvm/MC/TargetRegistry.h"
5455
#include "llvm/Support/Debug.h"
5556
#include "llvm/Support/FileSystem.h"
5657
#include "llvm/Support/Host.h"
@@ -60,7 +61,6 @@
6061
#include "llvm/Support/Signals.h"
6162
#include "llvm/Support/SourceMgr.h"
6263
#include "llvm/Support/SystemUtils.h"
63-
#include "llvm/Support/TargetRegistry.h"
6464
#include "llvm/Support/TargetSelect.h"
6565
#include "llvm/Support/ToolOutputFile.h"
6666
#include "llvm/Target/TargetMachine.h"

0 commit comments

Comments
 (0)