blob: 623e5e3933a20c466ce22944fe6cf9792ccc2722 [file] [log] [blame]
Daniel Dunbar70456e92011-09-29 01:37:40 +00001// Check that -w has higher priority than -Werror.
2// RUN: %clang_cc1 -verify -Wsign-compare -Werror -w %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00003// expected-no-diagnostics
Daniel Dunbar70456e92011-09-29 01:37:40 +00004
5int f0(int x, unsigned y) {
6 return x < y;
7}