aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/mips/ext_ins.c
blob: 36f0f3fd61ca29187dbdbcf150a242e81ee22e58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* { dg-do compile } */
/* { dg-options "isa_rev>=2" } */
/* { dg-final { scan-assembler "\td?ext\t" } } */
/* { dg-final { scan-assembler "\td?ins\t" } } */

struct A 
{
  unsigned int i : 2;
  unsigned int j : 3;
  unsigned int k : 4;
  unsigned int l : 5;
};

void func (struct A);

NOMIPS16 unsigned int f1 (struct A a)
{
  return a.j;
}

NOMIPS16 struct A f2 (struct A a, int i)
{
  a.j = i;
  return a;
}