URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [mips/] [truncate-5.c] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* If we AND in DI mode (i.e. replace the order of TRUNCATE and AND) then we can remove the TRUNCATE. */ /* { dg-options "-O -mgp64" } */ /* { 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; }
Go to most recent revision | Compare with Previous | Blame | View Log