[PATCH] D102814: [AIX] Print printable byte list as quoted string
Jinsong Ji via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 20 11:31:11 PDT 2021
jsji added inline comments.
================
Comment at: llvm/lib/MC/MCAsmStreamer.cpp:1008
+ for (const unsigned char C : Data) {
+ if (!isPrint(C))
+ return false;
----------------
This still need some slight change to deal with the ending 0 so that we can handle .string.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D102814/new/
https://reviews.llvm.org/D102814
More information about the llvm-commits
mailing list