1 /* Test C2x built-in functions: test functions new in C2x are indeed 2 declared as built-in as expected. DFP tests. */ 3 /* { dg-do compile } */ 4 /* { dg-options "-std=c2x" } */ 5 6 int fabsd32 (void); /* { dg-warning "conflicting types for built-in function" } */ 7 int fabsd64 (void); /* { dg-warning "conflicting types for built-in function" } */ 8 int fabsd128 (void); /* { dg-warning "conflicting types for built-in function" } */ 9 int nand32 (void); /* { dg-warning "conflicting types for built-in function" } */ 10 int nand64 (void); /* { dg-warning "conflicting types for built-in function" } */ 11 int nand128 (void); /* { dg-warning "conflicting types for built-in function" } */ 12