Skip to content

Commit 932fa0e

Browse files
[ORC] Fix missing include for MemoryAccess interface (NFC) (llvm#165576)
MemoryAccess base class was included from Core.h when it was a subclass of ExecutorProcessControl, but this changed in 0faa181
1 parent eccbfde commit 932fa0e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/include/llvm/ExecutionEngine/Orc/EPCGenericMemoryAccess.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88
//
9-
// Implements ExecutorProcessControl::MemoryAccess by making calls to
9+
// Implements the MemoryAccess interface by making calls to
1010
// ExecutorProcessControl::callWrapperAsync.
1111
//
1212
// This simplifies the implementaton of new ExecutorProcessControl instances,
@@ -19,6 +19,7 @@
1919
#define LLVM_EXECUTIONENGINE_ORC_EPCGENERICMEMORYACCESS_H
2020

2121
#include "llvm/ExecutionEngine/Orc/Core.h"
22+
#include "llvm/ExecutionEngine/Orc/MemoryAccess.h"
2223

2324
namespace llvm {
2425
namespace orc {

0 commit comments

Comments
 (0)