Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Frontend/warning-mapping-4.c @ 222:81f6424ef0e3 llvm-original
LLVM original branch
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:10:01 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 // Verify that various combinations of flags properly keep the sign-compare |
2 // warning disabled. | |
3 | |
4 // RUN: %clang_cc1 -verify -Wno-error=sign-compare %s | |
5 // RUN: %clang_cc1 -verify -Wsign-compare -w -Wno-error=sign-compare %s | |
6 // RUN: %clang_cc1 -verify -w -Werror=sign-compare %s | |
7 // expected-no-diagnostics | |
8 | |
9 int f0(int x, unsigned y) { | |
10 return x < y; | |
11 } |