aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/powerpc/20050603-3.c
blob: 0f328e1711faa0c674eb9d97072c876252a928d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile { target { ilp32 } } } */
/* { dg-options "-O2" } */
struct Q 
{
  long x:20;
  long y:4;
  long z:8;
}b;
/* This should generate a single rl[w]imi. */
void rotins (unsigned int x)
{
  b.y = (x<<12) | (x>>20);
}

/* { dg-final { scan-assembler-not "inm" } } */