1 | // RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-linux %s |
---|---|
2 | // expected-no-diagnostics |
3 | |
4 | #define EVAL_EXPR(testno, expr) int test##testno = sizeof(struct{char qq[expr];}); |
5 | |
6 | // <rdar://problem/10962435> |
7 | EVAL_EXPR(1, ((char*)-1LL) + 1 == 0 ? 1 : -1) |
8 | EVAL_EXPR(2, ((char*)-1LL) + 1 < (char*) -1 ? 1 : -1) |
9 |