opnsense-src/test/Preprocessor/overflow.c

26 lines
582 B
C
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -Eonly %s -verify -triple i686-pc-linux-gnu
2009-06-02 13:58:47 -04:00
// Multiply signed overflow
#if 0x7FFFFFFFFFFFFFFF*2 // expected-warning {{overflow}}
#endif
// Multiply unsigned overflow
#if 0xFFFFFFFFFFFFFFFF*2
#endif
// Add signed overflow
#if 0x7FFFFFFFFFFFFFFF+1 // expected-warning {{overflow}}
#endif
// Add unsigned overflow
#if 0xFFFFFFFFFFFFFFFF+1
#endif
// Subtract signed overflow
#if 0x7FFFFFFFFFFFFFFF- -1 // expected-warning {{overflow}}
#endif
// Subtract unsigned overflow
#if 0xFFFFFFFFFFFFFFFF- -1 // expected-warning {{converted from negative value}}
#endif