You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
324 B
9 lines
324 B
// RUN: %clang_cc1 -fsyntax-only -verify -Wsign-conversion %s
|
|
|
|
// PR9345: make a subgroup of -Wconversion for signedness changes
|
|
|
|
void test(int x) {
|
|
unsigned t0 = x; // expected-warning {{implicit conversion changes signedness}}
|
|
unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}}
|
|
}
|