aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/cris/builtin_bswap_v3.c
blob: 1230d4b596d4a6962b686d4bd1dcb8ffb7acf854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Check that we don't use the swap insn for bswap by checking assembler 
   output.  The swap instruction was added in v8.  */
/* { dg-do compile } */
/* { dg-skip-if "" { "cris*-*-elf" } { "-march*" } { "" } } */
/* { dg-options "-O2 -march=v3" } */
/* { dg-final { scan-assembler-not "\[ \t\]swapwb\[ \t\]" } } */

int
f (int a)
{
	return __builtin_bswap32(a);
}