warning-mapping-4.c 352 B

1234567891011
  1. // Verify that various combinations of flags properly keep the sign-compare
  2. // warning disabled.
  3. // RUN: %clang_cc1 -verify -Wno-error=sign-compare %s
  4. // RUN: %clang_cc1 -verify -Wsign-compare -w -Wno-error=sign-compare %s
  5. // RUN: %clang_cc1 -verify -w -Werror=sign-compare %s
  6. // expected-no-diagnostics
  7. int f0(int x, unsigned y) {
  8. return x < y;
  9. }