annotate gcc/testsuite/gcc.dg/builtin-inf-1.c @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900 (2018-10-25)
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-do compile } */
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 float fi = __builtin_inff();
kono
parents:
diff changeset
4 /* { dg-error "does not support infinity" "INF unsupported" { target vax-*-* spu-*-* } .-1 } */
kono
parents:
diff changeset
5 double di = __builtin_inf();
kono
parents:
diff changeset
6 /* { dg-error "does not support infinity" "INF unsupported" { target vax-*-* } .-1 } */
kono
parents:
diff changeset
7 long double li = __builtin_infl();
kono
parents:
diff changeset
8 /* { dg-error "does not support infinity" "INF unsupported" { target vax-*-* } .-1 } */
kono
parents:
diff changeset
9
kono
parents:
diff changeset
10 float fh = __builtin_huge_valf();
kono
parents:
diff changeset
11 double dh = __builtin_huge_val();
kono
parents:
diff changeset
12 long double lh = __builtin_huge_vall();
kono
parents:
diff changeset
13