Be careful about comdat boundary in ICF (PR ipa/82352).
[official-gcc.git] / gcc / testsuite / g++.dg / ext / int128-3.C
blobf62b62d1067ca8472b670bd5258ea3b828003014
1 // Test for int128 enums.
2 // { dg-do compile { target int128 } }
3 // { dg-options "" }
5 enum E {
6   e1 = 0xffffffffffffffff,
7   e2, e3
8 } e = e3;
10 #define SA(I,X) int a##I[(X)? 1 : -1]
12 SA(1, sizeof(E) == sizeof(__int128));