summaryrefslogtreecommitdiffstats
path: root/test/Sema/128bitint.c
blob: 2a18d904f8f273518478bcc4a86510070e7088a7 (plain)
1
2
3
4
5
6
// RUN: clang-cc -fsyntax-only -verify %s
typedef int i128 __attribute__((__mode__(TI)));
typedef unsigned u128 __attribute__((__mode__(TI)));

int a[((i128)-1 ^ (i128)-2) == 1 ? 1 : -1];
int a[(u128)-1 > 1LL ? 1 : -1];
OpenPOWER on IntegriCloud