[PATCH] D102814: [AIX] Print printable byte list as quoted string
    Jinsong Ji via Phabricator via cfe-commits 
    cfe-commits at lists.llvm.org
       
    Thu May 20 12:52:57 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;
----------------
jsji wrote:
> This still need some slight change to deal with the ending 0 so that we can handle .string.
Done.
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D102814/new/
https://reviews.llvm.org/D102814
    
    
More information about the cfe-commits
mailing list