This is debugging code so functionality isn't a concern, but mingw32 warns
because it doesn't understand the %llx format specifier.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@180024
91177308-0d34-0410-b5e6-
96231b3b80d8
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);