expr_usual_conversions.c 457 B

1234567891011121314
  1. // RUN: %clang_cc1 %s -E -verify
  2. #define INTMAX_MIN (-9223372036854775807LL -1)
  3. #if (-42 + 0U) /* expected-warning {{left side of operator converted from negative value to unsigned: -42 to 18446744073709551574}} */ \
  4. / -2 /* expected-warning {{right side of operator converted from negative value to unsigned: -2 to 18446744073709551614}} */
  5. foo
  6. #endif
  7. // Shifts don't want the usual conversions: PR2279
  8. #if (2 << 1U) - 30 >= 0
  9. #error
  10. #endif