[llvm] 144236a - [ORC] Remove stray debugging output accidentally committed in 7bd481d9afc.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Sun Jul 30 15:23:00 PDT 2023
Author: Lang Hames
Date: 2023-07-30T15:21:32-07:00
New Revision: 144236a4559f4f584102c8f2eef7313f26cc4c37
URL: https://github.com/llvm/llvm-project/commit/144236a4559f4f584102c8f2eef7313f26cc4c37
DIFF: https://github.com/llvm/llvm-project/commit/144236a4559f4f584102c8f2eef7313f26cc4c37.diff
LOG: [ORC] Remove stray debugging output accidentally committed in 7bd481d9afc.
Added:
Modified:
llvm/lib/ExecutionEngine/Orc/Core.cpp
Removed:
################################################################################
diff --git a/llvm/lib/ExecutionEngine/Orc/Core.cpp b/llvm/lib/ExecutionEngine/Orc/Core.cpp
index f069c58d2b7004..95ceba78a2d4d8 100644
--- a/llvm/lib/ExecutionEngine/Orc/Core.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/Core.cpp
@@ -1991,7 +1991,6 @@ Error ExecutionSession::removeJITDylibs(std::vector<JITDylibSP> JDsToRemove) {
// Clear JITDylibs and notify the platform.
Error Err = Error::success();
for (auto JD : JDsToRemove) {
- dbgs() << "---REMOVING--- " << JD->getName() << "\n";
Err = joinErrors(std::move(Err), JD->clear());
if (P)
Err = joinErrors(std::move(Err), P->teardownJITDylib(*JD));
More information about the llvm-commits
mailing list