aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/pr54988.c
blob: 59406d6ab24d240661bfcc2432d773fa35952845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* PR c++/54988 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-additional-options "-msse2" { target { i?86-*-* x86_64-*-* } } } */

#if defined(__i386__) || defined(__x86_64__)
#pragma GCC target "fpmath=sse"
#endif

static inline __attribute__ ((always_inline)) int
foo (int x)
{
  return x;
}

int
bar (int x)
{
  return foo (x);
}