OSDN Git Service

Commit for Jiangning.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / mips / truncate-5.c
1 /* If we AND in DI mode (i.e. replace the order of TRUNCATE and AND) then we
2    can remove the TRUNCATE.  */
3 /* { dg-options "-O -mgp64" } */
4 /* { dg-final { scan-assembler-not "\tsll\t\[^\n\]*,0" } } */
5
6 struct s
7 {
8   unsigned a:5;
9 };
10
11 NOMIPS16 void
12 f (struct s *s, unsigned long long a)
13 {
14   s->a = a & 0x3;
15 }