comparison gcc/testsuite/gcc.c-torture/compile/pr93533.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* PR target/93533 */
2
3 unsigned
4 foo (unsigned short a)
5 {
6 a = a - (a >> 1 & 21845);
7 a = (a & 13107) + (a >> 2 & 13107);
8 return (unsigned short) ((a + (a >> 4) & 3855) * 257) >> 8;
9 }