const-eval-64.c 306 B

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