aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/fp16-unprototyped-1.c
blob: 70c295648889afe91b1c4170cf9c3274dfa74f20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Test promotion of __fp16 to double as arguments to unprototyped
   function in another compilation unit.  */

/* { dg-do run } */
/* { dg-options "-mfp16-format=ieee" } */
/* { dg-additional-sources "fp16-unprototyped-2.c" } */

#include <stdlib.h>

extern int f ();

static __fp16 x = 42.0;
static __fp16 y = -42.0;

int
main (void)
{
  if (!f (x, y))
    abort ();
  return 0;
}