aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/movbe-1.c
blob: 391d4ad9814f38a831241482e132399f87dec537 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
/* { dg-options "-O2 -mmovbe" } */

extern int x;

void
foo (int i)
{
  x = __builtin_bswap32 (i);
}

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

/* { dg-final { scan-assembler-times "movbe\[ \t\]" 2 } } */