From eda5e6731efb032d4c3c2da59aa87126a12cfdfc Mon Sep 17 00:00:00 2001 From: Jacob Lambert Date: Thu, 13 Apr 2023 16:02:46 -0700 Subject: [PATCH] SWDEV-1 - Add missing newlines to debug log output Change-Id: I6c98d482079c34931cdc0615075eba34f87241f3 [ROCm/clr commit: 2a9d8b5862dd81dd40a9e201ff2624ae064cdd66] --- projects/clr/rocclr/device/devprogram.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/clr/rocclr/device/devprogram.cpp b/projects/clr/rocclr/device/devprogram.cpp index 6338b25ae9..50a1f9dc10 100644 --- a/projects/clr/rocclr/device/devprogram.cpp +++ b/projects/clr/rocclr/device/devprogram.cpp @@ -2599,13 +2599,13 @@ bool Program::createKernelMetadataMap(void* binary, size_t binSize) { const amd::Isa *binaryIsa = amd::Isa::findIsa(binaryIsaName.data()); if (!binaryIsa) { - buildLog_ += "Error: Could not find the program ISA " + std::string(binaryIsaName.data()); + buildLog_ += "Error: Could not find the program ISA " + std::string(binaryIsaName.data()) + "\n"; return false; } if (!amd::Isa::isCompatible(*binaryIsa, device().isa())) { buildLog_ += "Error: The program ISA " + std::string(binaryIsaName.data()); - buildLog_ += " is not compatible with the device ISA " + device().isa().isaName(); + buildLog_ += " is not compatible with the device ISA " + device().isa().isaName() + "\n"; return false; } }