[Openmp-commits] [PATCH] D95476: [libomptarget][NFC] Use portable printf format specifiers.
Vyacheslav Zakharin via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Tue Jan 26 13:57:27 PST 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG5f1d4d477902: [libomptarget][NFC] Use portable printf format specifiers. (authored by vzakhari).
Changed prior to commit:
https://reviews.llvm.org/D95476?vs=319392&id=319405#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D95476/new/
https://reviews.llvm.org/D95476
Files:
openmp/libomptarget/src/omptarget.cpp
openmp/libomptarget/src/private.h
Index: openmp/libomptarget/src/private.h
===================================================================
--- openmp/libomptarget/src/private.h
+++ openmp/libomptarget/src/private.h
@@ -112,9 +112,9 @@
for (const auto &HostTargetMap : Device.HostDataToTargetMap) {
SourceInfo Info(HostTargetMap.HstPtrName);
INFO(OMP_INFOTYPE_ALL, Device.DeviceID,
- DPxMOD " " DPxMOD " %-8lu %-8ld %s at %s:%d:%d\n",
+ DPxMOD " " DPxMOD " %-8" PRIuPTR " %-8" PRId64 " %s at %s:%d:%d\n",
DPxPTR(HostTargetMap.HstPtrBegin), DPxPTR(HostTargetMap.TgtPtrBegin),
- (long unsigned)(HostTargetMap.HstPtrEnd - HostTargetMap.HstPtrBegin),
+ HostTargetMap.HstPtrEnd - HostTargetMap.HstPtrBegin,
HostTargetMap.getRefCount(), Info.getName(), Info.getFilename(),
Info.getLine(), Info.getColumn());
}
@@ -152,7 +152,7 @@
else
type = "use_address";
- INFO(OMP_INFOTYPE_ALL, DeviceId, "%s(%s)[%ld] %s\n", type,
+ INFO(OMP_INFOTYPE_ALL, DeviceId, "%s(%s)[%" PRId64 "] %s\n", type,
getNameFromMapping(varName).c_str(), ArgSizes[i], implicit);
}
}
Index: openmp/libomptarget/src/omptarget.cpp
===================================================================
--- openmp/libomptarget/src/omptarget.cpp
+++ openmp/libomptarget/src/omptarget.cpp
@@ -764,8 +764,9 @@
}
} else {
char *Ptr = (char *)ArgsBase + Offset;
- DP("Transfer of non-contiguous : host ptr %lx offset %ld len %ld\n",
- (uint64_t)Ptr, Offset, Size);
+ DP("Transfer of non-contiguous : host ptr " DPxMOD " offset %" PRIu64
+ " len %" PRIu64 "\n",
+ DPxPTR(Ptr), Offset, Size);
Ret = targetDataContiguous(loc, Device, ArgsBase, Ptr, Size, ArgType);
}
return Ret;
@@ -894,7 +895,7 @@
if (I != Device.LoopTripCnt.end()) {
LoopTripCount = I->second;
Device.LoopTripCnt.erase(I);
- DP("loop trip count is %lu.\n", LoopTripCount);
+ DP("loop trip count is %" PRIu64 ".\n", LoopTripCount);
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D95476.319405.patch
Type: text/x-patch
Size: 2020 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20210126/5f692610/attachment.bin>
More information about the Openmp-commits
mailing list