comparison gcc/testsuite/gcc.dg/dfp/pr94111.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 /* PR middle-end/94111 */
2 /* { dg-do run } */
3 /* { dg-options "-O2" } */
4
5 int
6 main ()
7 {
8 _Decimal32 d = (_Decimal32) __builtin_inff ();
9 if (!__builtin_isinf ((double) d))
10 __builtin_abort ();
11 return 0;
12 }