aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2021-09-23 12:00:47 -0700
committerLang Hames <lhames@gmail.com>2021-09-23 20:35:17 -0700
commitef391df2b63320c9aec61045d8b96917081f0cb2 (patch)
tree21d5ad77b7b54a17c5dd79bb7b846fb25f54d9fd /llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp
parent4ed05312a1557b2f2552298a3aac12c2e224d77e (diff)
downloadllvm-ef391df2b63320c9aec61045d8b96917081f0cb2.zip
llvm-ef391df2b63320c9aec61045d8b96917081f0cb2.tar.gz
llvm-ef391df2b63320c9aec61045d8b96917081f0cb2.tar.bz2
[ORC] Rename ExecutorAddress to ExecutorAddr.
Removing the 'ess' suffix improves the ergonomics without sacrificing clarity. Since this class is likely to be used more frequently in the future it's worth some short term pain to fix this now.
Diffstat (limited to 'llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp')
-rw-r--r--llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp b/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp
index e2511f8..4ee96fa 100644
--- a/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp
@@ -36,8 +36,8 @@ SelfExecutorProcessControl::SelfExecutorProcessControl(
this->PageSize = PageSize;
this->MemMgr = OwnedMemMgr.get();
this->MemAccess = this;
- this->JDI = {ExecutorAddress::fromPtr(jitDispatchViaWrapperFunctionManager),
- ExecutorAddress::fromPtr(this)};
+ this->JDI = {ExecutorAddr::fromPtr(jitDispatchViaWrapperFunctionManager),
+ ExecutorAddr::fromPtr(this)};
if (this->TargetTriple.isOSBinFormatMachO())
GlobalManglingPrefix = '_';
}