2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / movbe-2.c
blobb322f774aa655bd05413ecdbe9ff795125b16af6
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 "movbe\[ \t\]" 4 { target ia32 } } } */
19 /* { dg-final { scan-assembler-times "movbe\[ \t\]" 2 { target { ! { ia32 } } } } } */