PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / pr37438.c
blobb64994c248398aed4f689a40505d48a945d4f8a7
1 /* PR target/37438 */
2 /* { dg-do compile } */
3 /* { dg-options "-Os" } */
4 /* { dg-options "-Os -march=i486" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
6 extern int bar (unsigned long long int);
7 extern int baz (const char *, unsigned int, unsigned short);
9 int
10 foo (unsigned long long int x)
12 return (x & 0xff) | ((unsigned int) (x >> 12) & ~0xff);
15 int
16 test (const char *v, unsigned int w, unsigned long long int x)
18 unsigned short k;
19 k = ((bar (x) & 0xff) << 8) | (foo (x) & 0xff);
20 return baz (v, w, k);