[PATCH] D33371: [compiler-rt] Replace allow_user_segv_handler=0 with kHandleSignalAlways
    Evgenii Stepanov via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Fri May 19 17:55:32 PDT 2017
    
    
  
eugenis accepted this revision.
eugenis added inline comments.
This revision is now accepted and ready to land.
================
Comment at: lib/sanitizer_common/sanitizer_flag_parser.h:68
+  if (internal_strcmp(value, "2") == 0 ||
+      internal_strcmp(value, "always") == 0) {
+    *t_ = kHandleSignalAlways;
----------------
maybe "exclusive"? The meaning of "always" is not  very clear in this context.
https://reviews.llvm.org/D33371
    
    
More information about the llvm-commits
mailing list