Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / warn-cast-of-sel-expr.m
bloba6d967f580e5cce20abfee5f539ba82dfce3d75a
1 // RUN: %clang_cc1  -fsyntax-only -verify -Wno-unused-value %s
2 // RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify -Wcast-of-sel-type -Wno-unused-value %s
4 SEL s;
6 SEL sel_registerName(const char *);
8 int main(void) {
9 (char *)s;  // expected-warning {{cast of type 'SEL' to 'char *' is deprecated; use sel_getName instead}}
10 (void *)s;  // ok
11 (const char *)sel_registerName("foo");  // expected-warning {{cast of type 'SEL' to 'const char *' is deprecated; use sel_getName instead}}
13 (const void *)sel_registerName("foo");  // ok
15 (void) s;   // ok
17 (void *const)s; // ok
19 (const void *const)s; // ok
21 (SEL)sel_registerName("foo");  // ok