Home | History | Annotate | Download | only in Sema

Lines Matching refs:fc

4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) {
8 char *cp3 = foo(fc);
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) {
17 int *ip = foo(fc);
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) {
26 int *ip = foo(fc);
33 void test_promote_or_convert(float f, float _Complex fc) {
34 char *cp = promote_or_convert(fc); // expected-error{{call to 'promote_or_convert' is ambiguous}}
41 void test_promote_or_convert2(float _Complex fc) {
42 int *cp = promote_or_convert2(fc);