2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / mips / truncate-3.c
blob90f2c772f8374b108bcae4c7dc878989f9f525cd
1 /* Remove redundant operations in truncate's operand. */
2 /* { dg-options "-O -mgp64" } */
3 /* { dg-final { scan-assembler-not "\tandi?\t" } } */
5 f (long long d)
7 long long c = d & 0xffffffffff;
8 int i = (int) c;
9 g (i);