Lines Matching refs:check
2 void check(int);
4 check(__builtin_isfinite(1.0f)); in a()
5 check(__builtin_isinf(1.0)); in a()
6 check(__builtin_isinf_sign(1.0L)); in a()
7 check(__builtin_isnan(1.0f)); in a()
8 check(__builtin_isnormal(1.0f)); in a()
9 check(__builtin_isfinite(1)); // expected-error{{requires argument of floating point type}} in a()
10 check(__builtin_isinf()); // expected-error{{too few arguments}} in a()
11 check(__builtin_isnan(1,2)); // expected-error{{too many arguments}} in a()
12 check(__builtin_fpclassify(0, 0, 0, 0, 0, 1.0)); in a()
13 …check(__builtin_fpclassify(0, 0, 0, 0, 0, 1)); // expected-error{{requires argument of floating po… in a()
14 check(__builtin_fpclassify(0, 0, 0, 0, 1)); // expected-error{{too few arguments}} in a()
15 check(__builtin_fpclassify(0, 0, 0, 0, 0, 1, 0)); // expected-error{{too many arguments}} in a()