* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20160802-1.c
blobf7a83dc73dca8038b530fd8ac826443c3b5fb2bb
1 long g (long width, unsigned long byte) {
2 long r_hi = 0;
3 unsigned long r_lo = 0;
4 int s;
5 for (s = 0; s < width; s += 8)
7 int d = width - s - 8;
8 if (s < (8 * 8))
9 r_hi |= byte << (d - (8 * 8));
11 return r_lo + r_hi;