blob: 391d4ad9814f38a831241482e132399f87dec537 [file] [log] [blame]
/* { 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 } } */