diff options
author | Lang Hames <lhames@gmail.com> | 2018-08-31 00:53:53 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2018-08-31 00:53:53 +0000 |
commit | b8b8de423d6f07e203f76988d35928f06a6a29e0 (patch) | |
tree | 4160414f73a6e88eefc04ebe4abc4a05f9373e10 /llvm/unittests/ExecutionEngine | |
parent | 6d32002e2bb0897836618f9ddb0b320a83583316 (diff) | |
download | bcm5719-llvm-b8b8de423d6f07e203f76988d35928f06a6a29e0.tar.gz bcm5719-llvm-b8b8de423d6f07e203f76988d35928f06a6a29e0.zip |
[ORC] Remove a stray debugging output line left in a unit test.
llvm-svn: 341155
Diffstat (limited to 'llvm/unittests/ExecutionEngine')
-rw-r--r-- | llvm/unittests/ExecutionEngine/Orc/LegacyAPIInteropTest.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/LegacyAPIInteropTest.cpp b/llvm/unittests/ExecutionEngine/Orc/LegacyAPIInteropTest.cpp index ec8ef5641f7..50152ccaed3 100644 --- a/llvm/unittests/ExecutionEngine/Orc/LegacyAPIInteropTest.cpp +++ b/llvm/unittests/ExecutionEngine/Orc/LegacyAPIInteropTest.cpp @@ -27,7 +27,6 @@ TEST_F(LegacyAPIsStandardTest, TestLambdaSymbolResolver) { auto Resolver = createSymbolResolver( [&](const SymbolNameSet &Symbols) { auto FlagsMap = JD.lookupFlags(Symbols); - llvm::dbgs() << "FlagsMap is " << FlagsMap << "\n"; SymbolNameSet Result; for (auto &KV : FlagsMap) if (!KV.second.isStrong()) |