aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/no-builtin-1.c
blob: 4f392e8b512eae75fafa3b2ca01a68b8494e9ec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* Test for -fno-builtin-FUNCTION.  */
/* Origin: Joseph Myers <jsm28@cam.ac.uk>.  */
/* { dg-do run } */
/* { dg-options "-fno-builtin-abs" } */

/* GCC normally handles abs and labs as built-in functions even without
   optimization.  So test that with -fno-builtin-abs, labs is so handled
   but abs isn't.  */

int abs_called = 0;

extern int abs (int);
extern long labs (long);
extern void abort (void);
extern void exit (int);

int
main (void)
{
  if (labs (0) != 0)
    abort ();
  if (abs (0) != 0)
    abort ();
  if (!abs_called)
    abort ();
  exit (0);
}

/* The labs call above should have been optimized, but the abs call
   shouldn't have been.  */

static int
abs (int x)
{ /* { dg-warning "static" "static decl warning" } */
  abs_called = 1;
  return (x < 0 ? -1 : x);
}

static long
labs (long x)
{
  abort ();
}