diff options
author | Olaf Hering <olh@suse.de> | 2007-10-17 02:27:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:53 -0400 |
commit | 68a9bd0cd5824073e3232b102011ec568a517646 (patch) | |
tree | f6dd6ea6f4b45194fdfb4022cf1203573362d8b6 /include/asm-v850 | |
parent | ac8d35c5658377c280dc830352f66233e2f76f73 (diff) |
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: Olaf Hering <olh@suse.de>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-v850')
-rw-r--r-- | include/asm-v850/types.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-v850/types.h b/include/asm-v850/types.h index dcef57196875..284bda882112 100644 --- a/include/asm-v850/types.h +++ b/include/asm-v850/types.h | |||
@@ -27,9 +27,9 @@ typedef unsigned short __u16; | |||
27 | typedef __signed__ int __s32; | 27 | typedef __signed__ int __s32; |
28 | typedef unsigned int __u32; | 28 | typedef unsigned int __u32; |
29 | 29 | ||
30 | #if defined(__GNUC__) && !defined(__STRICT_ANSI__) | 30 | #if defined(__GNUC__) |
31 | typedef __signed__ long long __s64; | 31 | __extension__ typedef __signed__ long long __s64; |
32 | typedef unsigned long long __u64; | 32 | __extension__ typedef unsigned long long __u64; |
33 | #endif | 33 | #endif |
34 | 34 | ||
35 | #endif /* !__ASSEMBLY__ */ | 35 | #endif /* !__ASSEMBLY__ */ |