Home | History | Annotate | Download | only in Sema

Lines Matching full:matching

36   (float)if1(); /* expected-warning {{cast from function call of type 'int' to non-matching type 'float'}} */
37 (double)if2(); /* expected-warning {{cast from function call of type 'char' to non-matching type 'double'}} */
38 (_Bool)if3(); /* expected-warning {{cast from function call of type 'long' to non-matching type '_Bool'}} */
39 (int)rf1(); /* expected-warning {{cast from function call of type 'float' to non-matching type 'int'}} */
40 (long)rf2(); /* expected-warning {{cast from function call of type 'double' to non-matching type 'long'}} */
41 (double)cf(); /* expected-warning {{cast from function call of type '_Complex double' to non-matching type 'double'}} */
42 (int)ef(); /* expected-warning {{cast from function call of type 'enum e' to non-matching type 'int'}} */
43 (int)bf(); /* expected-warning {{cast from function call of type '_Bool' to non-matching type 'int'}} */
44 (__SIZE_TYPE__)pf1(); /* expected-warning {{cast from function call of type 'char *' to non-matching type 'unsigned long'}} */
45 (__PTRDIFF_TYPE__)pf2(); /* expected-warning {{cast from function call of type 'int *' to non-matching type 'long'}} */