Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / pr105911.c
blob55df3f15affb5ac25103841d8eebffee52bba0ae
1 /* PR target/105911 */
2 /* { dg-do compile { target int128 } } */
3 /* { dg-options "-O2" } */
5 __int128 v, x;
6 unsigned __int128 w;
8 void bar (__int128, __int128);
10 void
11 foo (void)
13 bar (v /= v, v >> (v &= 0x100000001));
14 bar (w /= w, w >> (w &= 0x300000003));
15 bar (x /= x, x << (x &= 0x700000007));