[PATCH] D48446: [ubsan] Add support for reporting diagnostics to a monitor process
    Vitaly Buka via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Thu Jun 21 11:12:31 PDT 2018
    
    
  
vitalybuka added a comment.
Does check-asan work?
It would be nice to test major xcode/lldb expectations here.
================
Comment at: lib/ubsan/ubsan_monitor.cc:53
+  InternalScopedString &Buf = CurrentUBR->Buffer;
+  char FirstChar = Buf.data()[0];
+  if (FirstChar >= 'a' && FirstChar <= 'z')
----------------
why do you need this?
https://reviews.llvm.org/D48446
    
    
More information about the llvm-commits
mailing list