Home | History | Annotate | Download | only in Sema

Lines Matching refs:pcs

35 int __attribute__((pcs("aapcs", "aapcs"))) pcs1(void); // expected-error {{'pcs' attribute takes one argument}}
36 int __attribute__((pcs())) pcs2(void); // expected-error {{'pcs' attribute takes one argument}}
37 int __attribute__((pcs(pcs1))) pcs3(void); // expected-error {{'pcs' attribute requires a string}} \
38 // expected-error {{invalid PCS type}}
39 int __attribute__((pcs(0))) pcs4(void); // expected-error {{'pcs' attribute requires a string}}
41 int __attribute__((pcs("aapcs"))) pcs5(void); // expected-warning {{calling convention 'pcs' ignored for this target}}
42 int __attribute__((pcs("aapcs-vfp"))) pcs6(void); // expected-warning {{calling convention 'pcs' ignored for this target}}
43 int __attribute__((pcs("foo"))) pcs7(void); // expected-error {{invalid PCS type}}