25 lines
843 B
Diff
25 lines
843 B
Diff
|
diff --git a/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.h b/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.h
|
||
|
index aec950454..5bda9b3a3 100644
|
||
|
--- a/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.h
|
||
|
+++ b/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.h
|
||
|
@@ -156,18 +156,13 @@ namespace __sanitizer {
|
||
|
#elif defined(__sparc__)
|
||
|
# if defined(__arch64__)
|
||
|
unsigned mode;
|
||
|
- unsigned short __pad1;
|
||
|
-# else
|
||
|
- unsigned short __pad1;
|
||
|
- unsigned short mode;
|
||
|
unsigned short __pad2;
|
||
|
# endif
|
||
|
unsigned short __seq;
|
||
|
unsigned long long __unused1;
|
||
|
unsigned long long __unused2;
|
||
|
#else
|
||
|
- unsigned short mode;
|
||
|
- unsigned short __pad1;
|
||
|
+ unsigned int mode;
|
||
|
unsigned short __seq;
|
||
|
unsigned short __pad2;
|
||
|
#if defined(__x86_64__) && !defined(_LP64)
|