aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/builtin-bswap-1.c
blob: 0f94025c5343941bae5f02bbafd8dd072fc7f959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-not "builtin_bswap" } } */

long foo (long a)
{
  long b;

#if __LP64__
  b = __builtin_bswap64 (a);
#else
  b = __builtin_bswap32 (a);
#endif

  return b;
}