Skip to content

Commit 0e16414

Browse files
jhuber6tstellar
authored andcommitted
[OpenMP] Fix typo in libomptarge for the wrong environment variable
Summary: There was a typo in libomptarget that told users to use LIBOMPTARGET_DEBUG instead of LIBOMPTARGET_INFO. (cherry picked from commit 0af4e74)
1 parent 04a6828 commit 0e16414

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openmp/libomptarget/src/interface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static void HandleTargetOutcome(bool success, ident_t *loc = nullptr) {
6161
for (auto &Device : PM->Devices)
6262
dumpTargetPointerMappings(loc, Device);
6363
else
64-
FAILURE_MESSAGE("Run with LIBOMPTARGET_DEBUG=%d to dump host-target "
64+
FAILURE_MESSAGE("Run with LIBOMPTARGET_INFO=%d to dump host-target "
6565
"pointer mappings.\n",
6666
OMP_INFOTYPE_DUMP_TABLE);
6767

0 commit comments

Comments
 (0)