aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/mips/truncate-5.c
blob: f2a1875e959533fa7e1813478e46b66721ed360b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* If we AND in DI mode (i.e. replace the order of TRUNCATE and AND) then we
   can remove the TRUNCATE.  */
/* { dg-options "-mgp64" } */
/* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */
/* { dg-final { scan-assembler-not "\tsll\t\[^\n\]*,0" } } */

struct s
{
  unsigned a:5;
};

NOMIPS16 void
f (struct s *s, unsigned long long a)
{
  s->a = a & 0x3;
}