Lines Matching refs:pcs
39 int __attribute__((pcs("aapcs", "aapcs"))) pcs1(void); // expected-error {{'pcs' attribute takes one argument}}
40 int __attribute__((pcs())) pcs2(void); // expected-error {{'pcs' attribute takes one argument}}
41 int __attribute__((pcs(pcs1))) pcs3(void); // expected-error {{'pcs' attribute takes one argument}}
42 int __attribute__((pcs(0))) pcs4(void); // expected-error {{'pcs' attribute requires a string}}
44 int __attribute__((pcs("aapcs"))) pcs5(void); // expected-warning {{calling convention 'pcs' ignored for this target}}
45 int __attribute__((pcs("aapcs-vfp"))) pcs6(void); // expected-warning {{calling convention 'pcs' ignored for this target}}
46 int __attribute__((pcs("foo"))) pcs7(void); // expected-error {{invalid PCS type}}