Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:__pascal

9 // 2. test __pascal
13 // expected-warning@+1 {{calling convention '__pascal' ignored for this target}}
14 float __pascal gi2(int, int);
15 // expected-warning@+1 {{calling convention '__pascal' ignored for this target}}
16 template<typename T> T g2(T (__pascal * const )(int, int)) { return 0; }
19 // expected-warning@+1 {{calling convention '__pascal' ignored for this target}}
20 int __pascal addP();
21 // expected-warning@+1 {{calling convention '__pascal' ignored for this target}}
22 float __pascal subtractP();
24 // expected-warning@+1 {{calling convention '__pascal' ignored for this target}}
25 template<typename T> int h2(T (__pascal M::* const )()) { return 0; }