[llvm] r199711 - tools: use 64-bit print specifier

Tim Northover t.p.northover at gmail.com
Tue Jan 21 03:05:42 PST 2014


Hi Saleem,

> -  OS << format("; vsp = vsp + %u\n", 0x204 + (Value << 2));
> +  OS << format("; vsp = vsp + %" PRIu64 "\n", 0x204 + (Value << 2));

Aren't there some issues with MSVC around those macros? That is, I
didn't think it supported them at all.

Cheers.

Tim.



More information about the llvm-commits mailing list