[PATCH] D45283: [COFF] Minimal serialization support for precompiled types records
Zachary Turner via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 6 10:48:15 PDT 2018
zturner accepted this revision.
zturner added inline comments.
================
Comment at: tools/llvm-pdbutil/MinimalTypeDumper.cpp:475-478
+ P.format(" start index = {0}, types count = {1}, signature = {2},"
+ " precomp path = {3}",
+ StartIndex, TypesCount, Signature,
+ Precomp.PrecompFilePath);
----------------
You can do `{0:X+}` instead of converting each of them manually. The `X` means print uppercase hex digits, and the `+` means print the `0x` prefix.
Repository:
rL LLVM
https://reviews.llvm.org/D45283
More information about the llvm-commits
mailing list