128bitint.c revision d7d5f0223bd30dfd618762349c6209dd1d5ea3e6
1// RUN: clang-cc -fsyntax-only -verify %s
2typedef int i128 __attribute__((__mode__(TI)));
3typedef unsigned u128 __attribute__((__mode__(TI)));
4
5int a[((i128)-1 ^ (i128)-2) == 1 ? 1 : -1];
6int a[(u128)-1 > 1LL ? 1 : -1];
7