Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
c1fc3ec87807a35e2e12bb41a079b10c9db1350a
/
.
/
clang
/
test
/
Preprocessor
/
expr_usual_conversions.c
blob: 47aca7beca6f652b27da934a530ca5077fe44522 [
file
] [
log
] [
blame
]
// RUN: clang-cc %s -E 2>&1 | grep warning | wc -l | grep 2
#define
INTMAX_MIN
(-
9223372036854775807LL
-
1
)
#if (-42 + 0U) / -2
foo
#endif
// Shifts don't want the usual conversions: PR2279
#if (2 << 1U) - 30 >= 0
#error
#endif