diff options
author | Andrew Kaylor <andrew.kaylor@intel.com> | 2012-09-26 23:43:56 +0000 |
---|---|---|
committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2012-09-26 23:43:56 +0000 |
commit | c091ea33f07a9da83a78edc3e73685a5f1f14577 (patch) | |
tree | 3ee0153ee090f27bc2e72daa344bd6dd4d04ff01 /llvm/unittests/ExecutionEngine | |
parent | 76b65ea9427e7dacef86bfa74b2efe2dd2178f9c (diff) | |
download | bcm5719-llvm-c091ea33f07a9da83a78edc3e73685a5f1f14577.tar.gz bcm5719-llvm-c091ea33f07a9da83a78edc3e73685a5f1f14577.zip |
Fix of hang during Intel JIT profiling
Committed on behalf of Kirill Uhanov
llvm-svn: 164736
Diffstat (limited to 'llvm/unittests/ExecutionEngine')
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/IntelJITEventListenerTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/IntelJITEventListenerTest.cpp b/llvm/unittests/ExecutionEngine/JIT/IntelJITEventListenerTest.cpp index 8ed7a15be37..438350c187c 100644 --- a/llvm/unittests/ExecutionEngine/JIT/IntelJITEventListenerTest.cpp +++ b/llvm/unittests/ExecutionEngine/JIT/IntelJITEventListenerTest.cpp @@ -80,7 +80,7 @@ public: EXPECT_TRUE(0 != MockWrapper); Listener.reset(JITEventListener::createIntelJITEventListener( - MockWrapper.get())); + MockWrapper.take())); EXPECT_TRUE(0 != Listener); EE->RegisterJITEventListener(Listener.get()); } |