diff options
author | Lang Hames <lhames@gmail.com> | 2018-04-02 20:57:56 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2018-04-02 20:57:56 +0000 |
commit | 3fdfc04e5339c1d0ad838c1e5531b3a2e4377ec3 (patch) | |
tree | b9a2a81ff5a623dc196685546a58e9f79790a22e /llvm/unittests/ExecutionEngine/Orc/RTDyldObjectLinkingLayerTest.cpp | |
parent | 321c2487d7b1806cb3cc1a2391b130935bc06b64 (diff) | |
download | bcm5719-llvm-3fdfc04e5339c1d0ad838c1e5531b3a2e4377ec3.tar.gz bcm5719-llvm-3fdfc04e5339c1d0ad838c1e5531b3a2e4377ec3.zip |
[ORC] Create a new SymbolStringPool by default in ExecutionSession constructor.
This makes the common case of constructing an ExecutionSession tidier.
llvm-svn: 329013
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc/RTDyldObjectLinkingLayerTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/Orc/RTDyldObjectLinkingLayerTest.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/RTDyldObjectLinkingLayerTest.cpp b/llvm/unittests/ExecutionEngine/Orc/RTDyldObjectLinkingLayerTest.cpp index f52ee6b967e..650fd524812 100644 --- a/llvm/unittests/ExecutionEngine/Orc/RTDyldObjectLinkingLayerTest.cpp +++ b/llvm/unittests/ExecutionEngine/Orc/RTDyldObjectLinkingLayerTest.cpp @@ -67,8 +67,7 @@ TEST(RTDyldObjectLinkingLayerTest, TestSetProcessAllSections) { bool DebugSectionSeen = false; auto MM = std::make_shared<MemoryManagerWrapper>(DebugSectionSeen); - SymbolStringPool SSP; - ExecutionSession ES(SSP); + ExecutionSession ES(std::make_shared<SymbolStringPool>()); RTDyldObjectLinkingLayer ObjLayer(ES, [&MM](VModuleKey) { return RTDyldObjectLinkingLayer::Resources{ @@ -124,8 +123,7 @@ TEST_F(RTDyldObjectLinkingLayerExecutionTest, NoDuplicateFinalization) { if (!SupportsJIT) return; - SymbolStringPool SSP; - ExecutionSession ES(SSP); + ExecutionSession ES(std::make_shared<SymbolStringPool>()); auto MM = std::make_shared<SectionMemoryManagerWrapper>(); @@ -209,8 +207,7 @@ TEST_F(RTDyldObjectLinkingLayerExecutionTest, NoPrematureAllocation) { if (!SupportsJIT) return; - SymbolStringPool SSP; - ExecutionSession ES(SSP); + ExecutionSession ES(std::make_shared<SymbolStringPool>()); auto MM = std::make_shared<SectionMemoryManagerWrapper>(); @@ -271,8 +268,7 @@ TEST_F(RTDyldObjectLinkingLayerExecutionTest, NoPrematureAllocation) { } TEST_F(RTDyldObjectLinkingLayerExecutionTest, TestNotifyLoadedSignature) { - SymbolStringPool SSP; - ExecutionSession ES(SSP); + ExecutionSession ES(std::make_shared<SymbolStringPool>()); RTDyldObjectLinkingLayer ObjLayer( ES, [](VModuleKey) { |