Simple change, hope someone can take a look.
When you're dumping single bytes, having '0x' on the front of every byte is difficult to read and doubles the size of the output.
Differential D7151
Teach llvm::format_hex() to support formatting without a prefix '0x' zturner on Jan 23 2015, 11:52 AM. Authored by
Details Simple change, hope someone can take a look. When you're dumping single bytes, having '0x' on the front of every byte is difficult to read and doubles the size of the output.
Diff Detail
Event TimelineComment Actions Isn't that less efficient than just writing directly to the stream? Results in one heap allocation for every byte.
|