Module Name:    src
Committed By:   kalvisd
Date:           Sun Sep 29 14:44:52 UTC 2024

Modified Files:
        src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common:
            sanitizer_internal_defs.h

Log Message:
gcc12: sanitizer: Fix [us]ptr for NetBSD/vax

    (from rin@)


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 \
    
src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_internal_defs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_internal_defs.h
diff -u src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_internal_defs.h:1.18 src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_internal_defs.h:1.19
--- src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_internal_defs.h:1.18	Thu Aug  3 01:36:54 2023
+++ src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_internal_defs.h	Sun Sep 29 14:44:52 2024
@@ -142,7 +142,7 @@ typedef signed long long sptr;
 #  if (SANITIZER_WORDSIZE == 64) || SANITIZER_MAC || SANITIZER_WINDOWS || \
       (SANITIZER_NETBSD && \
        (defined(__sparc__) || defined(__hppa__) || defined(__arm__) || \
-	(defined(__mips__) && !defined(__mips_o32))))
+	(defined(__mips__) && !defined(__mips_o32)) || defined(__vax__)))
 typedef unsigned long uptr;
 typedef signed long sptr;
 #  else

Reply via email to