Commit 68a9bd0c authored by Olaf Hering's avatar Olaf Hering Committed by Linus Torvalds

remove strict ansi check from __u64 in asm/types.h

Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
32bit targets.

GCC can be made to warn about usage of long long types with ISO C90
(-ansi), but only with -pedantic.  You can write this in a way that even
then it doesn't cause warnings, namely by:

#ifdef __GNUC__
__extension__ typedef __signed__ long long __s64;
__extension__ typedef unsigned long long __u64;
#endif

The __extension__ keyword in front of this switches off any pedantic
warnings for this expression.
Signed-off-by: default avatarOlaf Hering <olh@suse.de>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ac8d35c5
...@@ -19,9 +19,9 @@ typedef unsigned short __u16; ...@@ -19,9 +19,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -25,9 +25,9 @@ typedef unsigned short __u16; ...@@ -25,9 +25,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -27,9 +27,9 @@ typedef __signed__ int __s32; ...@@ -27,9 +27,9 @@ typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
/* HK0617 -- Changes to unsigned long temporarily */ /* HK0617 -- Changes to unsigned long temporarily */
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -19,9 +19,9 @@ typedef unsigned short __u16; ...@@ -19,9 +19,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -30,9 +30,9 @@ typedef unsigned short __u16; ...@@ -30,9 +30,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -27,9 +27,9 @@ typedef unsigned short __u16; ...@@ -27,9 +27,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
/* /*
......
...@@ -19,9 +19,9 @@ typedef unsigned short __u16; ...@@ -19,9 +19,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -27,9 +27,9 @@ typedef unsigned short __u16; ...@@ -27,9 +27,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -34,9 +34,9 @@ typedef unsigned long __u64; ...@@ -34,9 +34,9 @@ typedef unsigned long __u64;
#else #else
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif #endif
......
...@@ -19,9 +19,9 @@ typedef unsigned short __u16; ...@@ -19,9 +19,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -40,9 +40,9 @@ typedef unsigned int __u32; ...@@ -40,9 +40,9 @@ typedef unsigned int __u32;
typedef __signed__ long __s64; typedef __signed__ long __s64;
typedef unsigned long __u64; typedef unsigned long __u64;
#else #else
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __powerpc64__ */ #endif /* __powerpc64__ */
......
...@@ -28,9 +28,9 @@ typedef __signed__ int __s32; ...@@ -28,9 +28,9 @@ typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#ifndef __s390x__ #ifndef __s390x__
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#else /* __s390x__ */ #else /* __s390x__ */
typedef __signed__ long __s64; typedef __signed__ long __s64;
......
...@@ -19,9 +19,9 @@ typedef unsigned short __u16; ...@@ -19,9 +19,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -30,9 +30,9 @@ typedef unsigned short __u16; ...@@ -30,9 +30,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -27,9 +27,9 @@ typedef unsigned short __u16; ...@@ -27,9 +27,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* !__ASSEMBLY__ */ #endif /* !__ASSEMBLY__ */
......
...@@ -19,9 +19,9 @@ typedef unsigned short __u16; ...@@ -19,9 +19,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
......
...@@ -38,9 +38,9 @@ typedef unsigned short __u16; ...@@ -38,9 +38,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment