From 5dd0c396384624cdcae646e8cdd254f28e3e478e Mon Sep 17 00:00:00 2001 From: Joseph Huber Date: Wed, 23 Feb 2022 08:09:53 -0500 Subject: [PATCH] [Libomptarget][NFC} Fix missing newline in error message --- openmp/libomptarget/DeviceRTL/src/State.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmp/libomptarget/DeviceRTL/src/State.cpp b/openmp/libomptarget/DeviceRTL/src/State.cpp index a530c5e0b2471..81a1bf2c6657a 100644 --- a/openmp/libomptarget/DeviceRTL/src/State.cpp +++ b/openmp/libomptarget/DeviceRTL/src/State.cpp @@ -138,7 +138,7 @@ void *SharedMemorySmartStackTy::push(uint64_t Bytes) { if (config::isDebugMode(config::DebugKind::CommonIssues)) PRINT("Shared memory stack full, fallback to dynamic allocation of global " - "memory will negatively impact performance."); + "memory will negatively impact performance.\n"); void *GlobalMemory = memory::allocGlobal( AlignedBytes, "Slow path shared memory allocation, insufficient " "shared memory stack memory!");