aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/builtin-tgmath-err-2.c
blob: df5655ef40256f5a997ae800ff2e89d8cab529c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Test __builtin_tgmath: errors that indicate bad arguments in a call
   to a type-generic macro, non-DFP.  */
/* { dg-do compile } */
/* { dg-options "" } */

float f_f (float);
double f_d (double);
long double f_ld (long double);
void *p;
long double ld;
_Complex float cf;

void
test (void)
{
  __builtin_tgmath (f_f, f_d, f_ld, p); /* { dg-error "invalid type of argument" } */
  __builtin_tgmath (f_f, f_d, ld); /* { dg-error "no matching function for type-generic call" } */
  __builtin_tgmath (f_f, f_d, cf); /* { dg-error "no matching function for type-generic call" } */
}