2010-04-08 02:43:41 +08:00
|
|
|
// RUN: %clang_cc1 %s -E -verify
|
2007-04-11 12:14:45 +08:00
|
|
|
|
|
|
|
#define INTMAX_MIN (-9223372036854775807LL -1)
|
|
|
|
|
2010-04-08 02:43:41 +08:00
|
|
|
#if (-42 + 0U) /* expected-warning {{left side of operator converted from negative value to unsigned: -42 to 18446744073709551574}} */ \
|
|
|
|
/ -2 /* expected-warning {{right side of operator converted from negative value to unsigned: -2 to 18446744073709551614}} */
|
2007-04-11 12:14:45 +08:00
|
|
|
foo
|
|
|
|
#endif
|
|
|
|
|
2008-05-05 02:25:32 +08:00
|
|
|
// Shifts don't want the usual conversions: PR2279
|
|
|
|
#if (2 << 1U) - 30 >= 0
|
|
|
|
#error
|
|
|
|
#endif
|
|
|
|
|