Eli Friedman | f98aba3 | 2009-02-13 02:31:07 +0000 | [diff] [blame] | 1 | // RUN: clang -fsyntax-only -verify %s |
2 | typedef int i128 __attribute__((__mode__(TI))); | ||||
3 | typedef unsigned u128 __attribute__((__mode__(TI))); | ||||
4 | |||||
5 | int a[((i128)-1 ^ (i128)-2) == 1 ? 1 : -1]; | ||||
6 | int a[(u128)-1 > 1LL ? 1 : -1]; |