Merge topic 'suppress-Wcast-align'

b9c4181 libarchive: Fix purposeful crash
87fde60 Suppress -Wcast-align in curl and bzip2
This commit is contained in:
Brad King 2010-09-14 13:11:58 -04:00 committed by CMake Topic Stage
commit 6afc8fed13
3 changed files with 8 additions and 1 deletions

View File

@ -47,6 +47,9 @@
/* warning C4127: conditional expression is constant*/ /* warning C4127: conditional expression is constant*/
# pragma warning(disable:4127) # pragma warning(disable:4127)
#endif #endif
#if defined(__clang__)
# pragma clang diagnostic ignored "-Wcast-align"
#endif
/*-- General stuff. --*/ /*-- General stuff. --*/

View File

@ -42,6 +42,10 @@
#define WIN32 #define WIN32
#endif #endif
#if defined(__clang__)
# pragma clang diagnostic ignored "-Wcast-align"
#endif
/* /*
* Include configuration script results or hand-crafted * Include configuration script results or hand-crafted
* configuration file for platforms which lack config tool. * configuration file for platforms which lack config tool.

View File

@ -69,7 +69,7 @@ diediedie(void)
/* Cause a breakpoint exception */ /* Cause a breakpoint exception */
DebugBreak(); DebugBreak();
#endif #endif
*(char *)0 = 1; /* Deliberately segfault and force a coredump. */ *(char *)1 = 1; /* Deliberately segfault and force a coredump. */
_exit(1); /* If that didn't work, just exit with an error. */ _exit(1); /* If that didn't work, just exit with an error. */
} }