[Libomptarget][NFC} Fix missing newline in error message
authorJoseph Huber <jhuber6@vols.utk.edu>
Wed, 23 Feb 2022 13:09:53 +0000 (08:09 -0500)
committerJoseph Huber <jhuber6@vols.utk.edu>
Wed, 23 Feb 2022 13:10:16 +0000 (08:10 -0500)
openmp/libomptarget/DeviceRTL/src/State.cpp

index a530c5e..81a1bf2 100644 (file)
@@ -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!");