[compiler-rt] a7ebf20 - [NFC][sanitizer] Increase kArgVMax to 16

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 23 11:20:56 PST 2021


Author: Vitaly Buka
Date: 2021-12-23T11:11:47-08:00
New Revision: a7ebf2010ebb76c32f59b95ecd7a403c382add92

URL: https://github.com/llvm/llvm-project/commit/a7ebf2010ebb76c32f59b95ecd7a403c382add92
DIFF: https://github.com/llvm/llvm-project/commit/a7ebf2010ebb76c32f59b95ecd7a403c382add92.diff

LOG: [NFC][sanitizer] Increase kArgVMax to 16

D116202 uses all availible slots.

Added: 
    

Modified: 
    compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
index 1eda31d0a817..df122ed3425c 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
@@ -86,7 +86,7 @@ class SymbolizerProcess {
   ~SymbolizerProcess() {}
 
   /// The maximum number of arguments required to invoke a tool process.
-  static const unsigned kArgVMax = 6;
+  static const unsigned kArgVMax = 16;
 
   // Customizable by subclasses.
   virtual bool StartSymbolizerSubprocess();


        


More information about the llvm-commits mailing list