[llvm] 20634ec - [ORC] Fix debugging output: printDescription should not have a newline.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Fri May 21 21:13:17 PDT 2021


Author: Lang Hames
Date: 2021-05-21T21:11:54-07:00
New Revision: 20634ece159ba60c694149fef95ca13f8a10cc63

URL: https://github.com/llvm/llvm-project/commit/20634ece159ba60c694149fef95ca13f8a10cc63
DIFF: https://github.com/llvm/llvm-project/commit/20634ece159ba60c694149fef95ca13f8a10cc63.diff

LOG: [ORC] Fix debugging output: printDescription should not have a newline.

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 270ef7cc37dc..f6ebfc318bfd 100644
--- a/llvm/lib/ExecutionEngine/Orc/Core.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/Core.cpp
@@ -1754,7 +1754,7 @@ void Task::anchor() {}
 
 void MaterializationTask::printDescription(raw_ostream &OS) {
   OS << "Materialization task: " << MU->getName() << " in "
-     << MR->getTargetJITDylib().getName() << "\n";
+     << MR->getTargetJITDylib().getName();
 }
 
 void MaterializationTask::run() { MU->materialize(std::move(MR)); }


        


More information about the llvm-commits mailing list