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

extern long long x;

void
foo (long long i)
{
  x = __builtin_bswap64 (i);
}

long long
bar ()
{
  return __builtin_bswap64 (x);
}

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