diff options
author | Lang Hames <lhames@gmail.com> | 2021-10-11 19:23:41 -0700 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2021-10-11 19:23:41 -0700 |
commit | 6641d29b70993bce6dbd7e0e0f1040753d38842f (patch) | |
tree | fc16c9a66e305d125d428e65b98e5b9d31884a5d /llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp | |
parent | e50aea58d59c8cfae807a7fee21c4227472c0678 (diff) | |
download | llvm-6641d29b70993bce6dbd7e0e0f1040753d38842f.zip llvm-6641d29b70993bce6dbd7e0e0f1040753d38842f.tar.gz llvm-6641d29b70993bce6dbd7e0e0f1040753d38842f.tar.bz2 |
Revert "[JITLink][ORC] Major JITLinkMemoryManager refactor."
This reverts commit e50aea58d59c8cfae807a7fee21c4227472c0678 while I
investigate bot failures.
Diffstat (limited to 'llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp b/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp index 0145387..6fb8b52 100644 --- a/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp +++ b/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp @@ -31,8 +31,7 @@ SelfExecutorProcessControl::SelfExecutorProcessControl( OwnedMemMgr = std::move(MemMgr); if (!OwnedMemMgr) - OwnedMemMgr = std::make_unique<jitlink::InProcessMemoryManager>( - sys::Process::getPageSizeEstimate()); + OwnedMemMgr = std::make_unique<jitlink::InProcessMemoryManager>(); this->TargetTriple = std::move(TargetTriple); this->PageSize = PageSize; |