[CUDA] Use all 64 bits of GUID in __nv_module_id
authorArtem Belevich <tra@google.com>
Fri, 5 Oct 2018 18:39:58 +0000 (18:39 +0000)
committerArtem Belevich <tra@google.com>
Fri, 5 Oct 2018 18:39:58 +0000 (18:39 +0000)
commit93552b39c952959120655984ce1f437b821dff57
treeba05f5a5dc1b00fb92706b5415db33229d832d70
parentfb43114ba25f81b3c22a8cb27c532b559100d63a
[CUDA] Use all 64 bits of GUID in __nv_module_id

getGUID() returns an uint64_t and "%x" only prints 32 bits of it.
Use PRIx64 format string to print all 64 bits.

Differential Revision: https://reviews.llvm.org/D52938

llvm-svn: 343875
clang/lib/CodeGen/CGCUDANV.cpp