PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / movbe-2.c
blobaf3b3ca9ae0b0d325a0c45446fc6236414cd530c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -mmovbe" } */
4 extern long long x;
6 void
7 foo (long long i)
9 x = __builtin_bswap64 (i);
12 long long
13 bar ()
15 return __builtin_bswap64 (x);
18 /* { dg-final { scan-assembler-times "movbel\[ \t\]" 4 { target ia32 } } } */
19 /* { dg-final { scan-assembler-times "movbeq\[ \t\]" 2 { target { ! ia32 } } } } */