Skip to content

Commit 5dab8fe

Browse files
committed
[llvm] clang-format changes to ExecutionEngine library
1 parent d130677 commit 5dab8fe

File tree

92 files changed

+402
-350
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+402
-350
lines changed

llvm/include/llvm/ExecutionEngine/ExecutionEngine.h

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#ifndef LLVM_EXECUTIONENGINE_EXECUTIONENGINE_H
1515
#define LLVM_EXECUTIONENGINE_EXECUTIONENGINE_H
1616

17-
#include "llvm/Support/Compiler.h"
1817
#include "llvm-c/ExecutionEngine.h"
1918
#include "llvm/ADT/ArrayRef.h"
2019
#include "llvm/ADT/SmallVector.h"
@@ -26,6 +25,7 @@
2625
#include "llvm/Object/Binary.h"
2726
#include "llvm/Support/CBindingWrapping.h"
2827
#include "llvm/Support/CodeGen.h"
28+
#include "llvm/Support/Compiler.h"
2929
#include "llvm/Support/ErrorHandling.h"
3030
#include "llvm/Support/Mutex.h"
3131
#include "llvm/Target/TargetMachine.h"
@@ -572,12 +572,14 @@ class EngineBuilder {
572572
/// to create anything other than MCJIT will cause a runtime error. If create()
573573
/// is called and is successful, the created engine takes ownership of the
574574
/// memory manager. This option defaults to NULL.
575-
LLVM_ABI EngineBuilder &setMCJITMemoryManager(std::unique_ptr<RTDyldMemoryManager> mcjmm);
575+
LLVM_ABI EngineBuilder &
576+
setMCJITMemoryManager(std::unique_ptr<RTDyldMemoryManager> mcjmm);
576577

577-
LLVM_ABI EngineBuilder&
578+
LLVM_ABI EngineBuilder &
578579
setMemoryManager(std::unique_ptr<MCJITMemoryManager> MM);
579580

580-
LLVM_ABI EngineBuilder &setSymbolResolver(std::unique_ptr<LegacyJITSymbolResolver> SR);
581+
LLVM_ABI EngineBuilder &
582+
setSymbolResolver(std::unique_ptr<LegacyJITSymbolResolver> SR);
581583

582584
/// setErrorStr - Set the error string to write to on error. This option
583585
/// defaults to NULL.
@@ -650,10 +652,9 @@ class EngineBuilder {
650652

651653
/// selectTarget - Pick a target either via -march or by guessing the native
652654
/// arch. Add any CPU features specified via -mcpu or -mattr.
653-
LLVM_ABI TargetMachine *selectTarget(const Triple &TargetTriple,
654-
StringRef MArch,
655-
StringRef MCPU,
656-
const SmallVectorImpl<std::string>& MAttrs);
655+
LLVM_ABI TargetMachine *
656+
selectTarget(const Triple &TargetTriple, StringRef MArch, StringRef MCPU,
657+
const SmallVectorImpl<std::string> &MAttrs);
657658

658659
ExecutionEngine *create() {
659660
return create(selectTarget());

llvm/include/llvm/ExecutionEngine/JITEventListener.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
#ifndef LLVM_EXECUTIONENGINE_JITEVENTLISTENER_H
1515
#define LLVM_EXECUTIONENGINE_JITEVENTLISTENER_H
1616

17-
#include "llvm/Support/Compiler.h"
1817
#include "llvm-c/ExecutionEngine.h"
1918
#include "llvm/Config/llvm-config.h"
2019
#include "llvm/ExecutionEngine/RuntimeDyld.h"
2120
#include "llvm/IR/DebugLoc.h"
2221
#include "llvm/Support/CBindingWrapping.h"
22+
#include "llvm/Support/Compiler.h"
2323
#include <cstdint>
2424

2525
namespace llvm {

llvm/include/llvm/ExecutionEngine/JITLink/EHFrameSupport.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_EHFRAMESUPPORT_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_EHFRAMESUPPORT_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
1817
#include "llvm/ExecutionEngine/JITSymbol.h"
18+
#include "llvm/Support/Compiler.h"
1919
#include "llvm/Support/Error.h"
2020
#include "llvm/TargetParser/Triple.h"
2121

llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_JITLINK_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_JITLINK_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ADT/DenseMap.h"
1817
#include "llvm/ADT/DenseSet.h"
1918
#include "llvm/ADT/FunctionExtras.h"
@@ -28,6 +27,7 @@
2827
#include "llvm/Support/Allocator.h"
2928
#include "llvm/Support/BinaryStreamReader.h"
3029
#include "llvm/Support/BinaryStreamWriter.h"
30+
#include "llvm/Support/Compiler.h"
3131
#include "llvm/Support/Endian.h"
3232
#include "llvm/Support/Error.h"
3333
#include "llvm/Support/FormatVariadic.h"
@@ -712,7 +712,7 @@ class Symbol {
712712
LLVM_ABI raw_ostream &operator<<(raw_ostream &OS, const Symbol &A);
713713

714714
LLVM_ABI void printEdge(raw_ostream &OS, const Block &B, const Edge &E,
715-
StringRef EdgeKindName);
715+
StringRef EdgeKindName);
716716

717717
/// Represents an object file section.
718718
class Section {
@@ -1663,7 +1663,7 @@ class LinkGraph {
16631663

16641664
private:
16651665
LLVM_ABI std::vector<Block *> splitBlockImpl(std::vector<Block *> Blocks,
1666-
SplitBlockCache *Cache);
1666+
SplitBlockCache *Cache);
16671667

16681668
// Put the BumpPtrAllocator first so that we don't free any of the underlying
16691669
// memory until the Symbol/Addressable destructors have been run.
@@ -2000,10 +2000,10 @@ LLVM_ABI Error markAllSymbolsLive(LinkGraph &G);
20002000

20012001
/// Create an out of range error for the given edge in the given block.
20022002
LLVM_ABI Error makeTargetOutOfRangeError(const LinkGraph &G, const Block &B,
2003-
const Edge &E);
2003+
const Edge &E);
20042004

2005-
LLVM_ABI Error makeAlignmentError(llvm::orc::ExecutorAddr Loc, uint64_t Value, int N,
2006-
const Edge &E);
2005+
LLVM_ABI Error makeAlignmentError(llvm::orc::ExecutorAddr Loc, uint64_t Value,
2006+
int N, const Edge &E);
20072007

20082008
/// Creates a new pointer block in the given section and returns an
20092009
/// Anonymous symbol pointing to it.
@@ -2074,7 +2074,8 @@ absoluteSymbolsLinkGraph(Triple TT, std::shared_ptr<orc::SymbolStringPool> SSP,
20742074
orc::SymbolMap Symbols);
20752075

20762076
/// Link the given graph.
2077-
LLVM_ABI void link(std::unique_ptr<LinkGraph> G, std::unique_ptr<JITLinkContext> Ctx);
2077+
LLVM_ABI void link(std::unique_ptr<LinkGraph> G,
2078+
std::unique_ptr<JITLinkContext> Ctx);
20782079

20792080
} // end namespace jitlink
20802081
} // end namespace llvm

llvm/include/llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_JITLINKMEMORYMANAGER_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_JITLINKMEMORYMANAGER_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ADT/FunctionExtras.h"
1817
#include "llvm/ADT/SmallVector.h"
1918
#include "llvm/ExecutionEngine/JITLink/JITLinkDylib.h"
@@ -22,6 +21,7 @@
2221
#include "llvm/ExecutionEngine/Orc/Shared/MemoryFlags.h"
2322
#include "llvm/ExecutionEngine/Orc/SymbolStringPool.h"
2423
#include "llvm/Support/Allocator.h"
24+
#include "llvm/Support/Compiler.h"
2525
#include "llvm/Support/Error.h"
2626
#include "llvm/Support/MSVCErrorWorkarounds.h"
2727
#include "llvm/Support/Memory.h"
@@ -322,9 +322,9 @@ class SimpleSegmentAlloc {
322322
JITLinkMemoryManager::InFlightAlloc::OnFinalizedFunction;
323323

324324
LLVM_ABI static void Create(JITLinkMemoryManager &MemMgr,
325-
std::shared_ptr<orc::SymbolStringPool> SSP, Triple TT,
326-
const JITLinkDylib *JD, SegmentMap Segments,
327-
OnCreatedFunction OnCreated);
325+
std::shared_ptr<orc::SymbolStringPool> SSP,
326+
Triple TT, const JITLinkDylib *JD,
327+
SegmentMap Segments, OnCreatedFunction OnCreated);
328328

329329
LLVM_ABI static Expected<SimpleSegmentAlloc>
330330
Create(JITLinkMemoryManager &MemMgr,

llvm/include/llvm/ExecutionEngine/JITLink/MachO.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_MACHO_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_MACHO_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
1817
#include "llvm/ExecutionEngine/Orc/Shared/MachOObjectFormat.h"
18+
#include "llvm/Support/Compiler.h"
1919

2020
namespace llvm {
2121
namespace jitlink {
@@ -34,7 +34,7 @@ createLinkGraphFromMachOObject(MemoryBufferRef ObjectBuffer,
3434
/// Uses conservative defaults for GOT and stub handling based on the target
3535
/// platform.
3636
LLVM_ABI void link_MachO(std::unique_ptr<LinkGraph> G,
37-
std::unique_ptr<JITLinkContext> Ctx);
37+
std::unique_ptr<JITLinkContext> Ctx);
3838

3939
/// Get a pointer to the standard MachO data section (creates an empty
4040
/// section with RW- permissions and standard lifetime if one does not

llvm/include/llvm/ExecutionEngine/JITLink/MachO_arm64.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_MACHO_ARM64_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_MACHO_ARM64_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
17+
#include "llvm/Support/Compiler.h"
1818

1919
namespace llvm {
2020
namespace jitlink {
@@ -24,7 +24,8 @@ namespace jitlink {
2424
/// Note: The graph does not take ownership of the underlying buffer, nor copy
2525
/// its contents. The caller is responsible for ensuring that the object buffer
2626
/// outlives the graph.
27-
LLVM_ABI Expected<std::unique_ptr<LinkGraph>> createLinkGraphFromMachOObject_arm64(
27+
LLVM_ABI Expected<std::unique_ptr<LinkGraph>>
28+
createLinkGraphFromMachOObject_arm64(
2829
MemoryBufferRef ObjectBuffer, std::shared_ptr<orc::SymbolStringPool> SSP);
2930

3031
/// jit-link the given object buffer, which must be a MachO arm64 object file.
@@ -37,7 +38,7 @@ LLVM_ABI Expected<std::unique_ptr<LinkGraph>> createLinkGraphFromMachOObject_arm
3738
/// be inserted. If PostPrunePasses is not empty then the caller is responsible
3839
/// for including a pass to insert GOT and stub edges.
3940
LLVM_ABI void link_MachO_arm64(std::unique_ptr<LinkGraph> G,
40-
std::unique_ptr<JITLinkContext> Ctx);
41+
std::unique_ptr<JITLinkContext> Ctx);
4142

4243
/// Returns a pass suitable for splitting __eh_frame sections in MachO/x86-64
4344
/// objects.

llvm/include/llvm/ExecutionEngine/JITLink/MachO_x86_64.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_MACHO_X86_64_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_MACHO_X86_64_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
17+
#include "llvm/Support/Compiler.h"
1818

1919
namespace llvm {
2020
namespace jitlink {
@@ -24,7 +24,8 @@ namespace jitlink {
2424
/// Note: The graph does not take ownership of the underlying buffer, nor copy
2525
/// its contents. The caller is responsible for ensuring that the object buffer
2626
/// outlives the graph.
27-
LLVM_ABI Expected<std::unique_ptr<LinkGraph>> createLinkGraphFromMachOObject_x86_64(
27+
LLVM_ABI Expected<std::unique_ptr<LinkGraph>>
28+
createLinkGraphFromMachOObject_x86_64(
2829
MemoryBufferRef ObjectBuffer, std::shared_ptr<orc::SymbolStringPool> SSP);
2930

3031
/// jit-link the given LinkGraph.
@@ -37,7 +38,7 @@ LLVM_ABI Expected<std::unique_ptr<LinkGraph>> createLinkGraphFromMachOObject_x86
3738
/// be inserted. If PostPrunePasses is not empty then the caller is responsible
3839
/// for including a pass to insert GOT and stub edges.
3940
LLVM_ABI void link_MachO_x86_64(std::unique_ptr<LinkGraph> G,
40-
std::unique_ptr<JITLinkContext> Ctx);
41+
std::unique_ptr<JITLinkContext> Ctx);
4142

4243
/// Returns a pass suitable for splitting __eh_frame sections in MachO/x86-64
4344
/// objects.

llvm/include/llvm/ExecutionEngine/JITLink/aarch32.h

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_AARCH32
1414
#define LLVM_EXECUTIONENGINE_JITLINK_AARCH32
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "TableManager.h"
1817
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
1918
#include "llvm/ExecutionEngine/Orc/Shared/ExecutorAddress.h"
2019
#include "llvm/Support/ARMBuildAttributes.h"
20+
#include "llvm/Support/Compiler.h"
2121
#include "llvm/Support/Error.h"
2222

2323
namespace llvm {
@@ -271,16 +271,18 @@ template <> struct FixupInfo<Thumb_MovwPrelNC> : public FixupInfoThumbMov {
271271
};
272272

273273
/// Helper function to read the initial addend for Data-class relocations.
274-
LLVM_ABI Expected<int64_t> readAddendData(LinkGraph &G, Block &B, Edge::OffsetT Offset,
275-
Edge::Kind Kind);
274+
LLVM_ABI Expected<int64_t>
275+
readAddendData(LinkGraph &G, Block &B, Edge::OffsetT Offset, Edge::Kind Kind);
276276

277277
/// Helper function to read the initial addend for Arm-class relocations.
278-
LLVM_ABI Expected<int64_t> readAddendArm(LinkGraph &G, Block &B, Edge::OffsetT Offset,
279-
Edge::Kind Kind);
278+
LLVM_ABI Expected<int64_t> readAddendArm(LinkGraph &G, Block &B,
279+
Edge::OffsetT Offset, Edge::Kind Kind);
280280

281281
/// Helper function to read the initial addend for Thumb-class relocations.
282-
LLVM_ABI Expected<int64_t> readAddendThumb(LinkGraph &G, Block &B, Edge::OffsetT Offset,
283-
Edge::Kind Kind, const ArmConfig &ArmCfg);
282+
LLVM_ABI Expected<int64_t> readAddendThumb(LinkGraph &G, Block &B,
283+
Edge::OffsetT Offset,
284+
Edge::Kind Kind,
285+
const ArmConfig &ArmCfg);
284286

285287
/// Read the initial addend for a REL-type relocation. It's the value encoded
286288
/// in the immediate field of the fixup location by the compiler.
@@ -308,7 +310,7 @@ LLVM_ABI Error applyFixupArm(LinkGraph &G, Block &B, const Edge &E);
308310

309311
/// Helper function to apply the fixup for Thumb-class relocations.
310312
LLVM_ABI Error applyFixupThumb(LinkGraph &G, Block &B, const Edge &E,
311-
const ArmConfig &ArmCfg);
313+
const ArmConfig &ArmCfg);
312314

313315
/// Apply fixup expression for edge to block content.
314316
inline Error applyFixup(LinkGraph &G, Block &B, const Edge &E,

llvm/include/llvm/ExecutionEngine/JITLink/aarch64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_AARCH64_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_AARCH64_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "TableManager.h"
1817
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
1918
#include "llvm/ExecutionEngine/Orc/Shared/MemoryFlags.h"
19+
#include "llvm/Support/Compiler.h"
2020

2121
namespace llvm {
2222
namespace jitlink {

llvm/include/llvm/ExecutionEngine/JITLink/loongarch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_LOONGARCH_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_LOONGARCH_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "TableManager.h"
1817
#include "llvm/ADT/StringExtras.h"
1918
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
2019
#include "llvm/ExecutionEngine/Orc/Shared/MemoryFlags.h"
20+
#include "llvm/Support/Compiler.h"
2121
#include "llvm/Support/LEB128.h"
2222

2323
namespace llvm {

llvm/include/llvm/ExecutionEngine/JITLink/ppc64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_PPC64_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_PPC64_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
1817
#include "llvm/ExecutionEngine/JITLink/TableManager.h"
18+
#include "llvm/Support/Compiler.h"
1919
#include "llvm/Support/Endian.h"
2020

2121
namespace llvm::jitlink::ppc64 {

llvm/include/llvm/ExecutionEngine/JITLink/riscv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_RISCV_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_RISCV_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
17+
#include "llvm/Support/Compiler.h"
1818

1919
namespace llvm {
2020
namespace jitlink {

llvm/include/llvm/ExecutionEngine/JITLink/x86.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_X86_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_X86_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
1817
#include "llvm/ExecutionEngine/JITLink/TableManager.h"
18+
#include "llvm/Support/Compiler.h"
1919

2020
namespace llvm::jitlink::x86 {
2121

llvm/include/llvm/ExecutionEngine/JITLink/x86_64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
#ifndef LLVM_EXECUTIONENGINE_JITLINK_X86_64_H
1414
#define LLVM_EXECUTIONENGINE_JITLINK_X86_64_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ExecutionEngine/JITLink/JITLink.h"
1817
#include "llvm/ExecutionEngine/JITLink/TableManager.h"
18+
#include "llvm/Support/Compiler.h"
1919

2020
namespace llvm {
2121
namespace jitlink {

llvm/include/llvm/ExecutionEngine/JITSymbol.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ class ARMJITSymbolFlags {
220220

221221
operator JITSymbolFlags::TargetFlagsType&() { return Flags; }
222222

223-
LLVM_ABI static ARMJITSymbolFlags fromObjectSymbol(const object::SymbolRef &Symbol);
223+
LLVM_ABI static ARMJITSymbolFlags
224+
fromObjectSymbol(const object::SymbolRef &Symbol);
224225

225226
private:
226227
JITSymbolFlags::TargetFlagsType Flags = 0;

llvm/include/llvm/ExecutionEngine/Orc/AbsoluteSymbols.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
#ifndef LLVM_EXECUTIONENGINE_ORC_ABSOLUTESYMBOLS_H
1414
#define LLVM_EXECUTIONENGINE_ORC_ABSOLUTESYMBOLS_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ExecutionEngine/Orc/MaterializationUnit.h"
17+
#include "llvm/Support/Compiler.h"
1818

1919
namespace llvm::orc {
2020

llvm/include/llvm/ExecutionEngine/Orc/COFFPlatform.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
#ifndef LLVM_EXECUTIONENGINE_ORC_COFFPLATFORM_H
1414
#define LLVM_EXECUTIONENGINE_ORC_COFFPLATFORM_H
1515

16-
#include "llvm/Support/Compiler.h"
1716
#include "llvm/ADT/StringRef.h"
1817
#include "llvm/ExecutionEngine/Orc/COFFVCRuntimeSupport.h"
1918
#include "llvm/ExecutionEngine/Orc/Core.h"
2019
#include "llvm/ExecutionEngine/Orc/ExecutionUtils.h"
2120
#include "llvm/ExecutionEngine/Orc/ExecutorProcessControl.h"
2221
#include "llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h"
2322
#include "llvm/ExecutionEngine/Orc/Shared/ExecutorAddress.h"
23+
#include "llvm/Support/Compiler.h"
2424

2525
#include <future>
2626
#include <list>

0 commit comments

Comments
 (0)