Skip to content

Commit

Permalink
[Libomptarget][NFC} Fix missing newline in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jhuber6 committed Feb 23, 2022
1 parent 3c840e3 commit 5dd0c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmp/libomptarget/DeviceRTL/src/State.cpp
Expand Up @@ -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!");
Expand Down

0 comments on commit 5dd0c39

Please sign in to comment.