//===---------------- SimpleExecutorMemoryManagerTest.cpp -----------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "llvm/ExecutionEngine/Orc/TargetProcess/SimpleExecutorMemoryManager.h" #include "llvm/Testing/Support/Error.h" #include "gtest/gtest.h" #include <limits> #include <vector> usingnamespacellvm; usingnamespacellvm::orc; usingnamespacellvm::orc::shared; usingnamespacellvm::orc::rt_bootstrap; namespace { orc::shared::CWrapperFunctionResult incrementWrapper(const char *ArgData, size_t ArgSize) { … } TEST(SimpleExecutorMemoryManagerTest, AllocFinalizeFree) { … } } // namespace