blob: 45678e90a9c1ab7c4a1ad4e396e71f30ba2d50d5 [file] [log] [blame]
Eli Friedmanf98aba32009-02-13 02:31:07 +00001// RUN: clang -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];