diff options
Diffstat (limited to 'src/conf_post.h')
| -rw-r--r-- | src/conf_post.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_post.h b/src/conf_post.h index 5f6cf0eca37..14af38ce70b 100644 --- a/src/conf_post.h +++ b/src/conf_post.h | |||
| @@ -253,7 +253,7 @@ extern void _DebPrint (const char *fmt, ...); | |||
| 253 | #if defined lint | 253 | #if defined lint |
| 254 | # define assume(cond) ((cond) ? (void) 0 : abort ()) | 254 | # define assume(cond) ((cond) ? (void) 0 : abort ()) |
| 255 | #elif (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) || __GNUC__ > 4 | 255 | #elif (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) || __GNUC__ > 4 |
| 256 | # define assume(cond) ((x) || (__builtin_unreachable(), 0)) | 256 | # define assume(cond) ((cond) || (__builtin_unreachable(), 0)) |
| 257 | #elif defined __MSC_VER | 257 | #elif defined __MSC_VER |
| 258 | # define assume(cond) __assume ((cond)) | 258 | # define assume(cond) __assume ((cond)) |
| 259 | #else | 259 | #else |