forked from OSchip/llvm-project
Use the ugly PRIx64 macro to make format string portable.
This is debugging code so functionality isn't a concern, but mingw32 warns because it doesn't understand the %llx format specifier. llvm-svn: 180024
This commit is contained in:
parent
8932a882c8
commit
c272794899
|
@ -2393,7 +2393,7 @@ llvm::Constant *CGObjCCommonMac::getBitmapBlockLayout(bool ComputeByrefLayout) {
|
|||
printf("\n Inline instruction for BYREF variable layout: ");
|
||||
else
|
||||
printf("\n Inline instruction for block variable layout: ");
|
||||
printf("0x0%llx\n", (unsigned long long)Result);
|
||||
printf("0x0%" PRIx64 "\n", Result);
|
||||
}
|
||||
if (WordSizeInBytes == 8) {
|
||||
const llvm::APInt Instruction(64, Result);
|
||||
|
|
Loading…
Reference in New Issue