[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGen / constant-comparison.c
blobe2b3f1a2a58fe8a2f7c6f134b38b3e2bbd5652db
1 // RUN: %clang_cc1 -emit-llvm %s -o - 2>&1 | not grep warning
2 // RUN: %clang_cc1 -fno-ident -emit-llvm %s -o - | grep @b | count 1
4 int a, b;
5 int *c1 = 1 < 2 ? &a : &b;
6 int *c2 = 3 != 3LL ? &b : &a;
7 int *c3 = !(3 <= 4.0) ? &b : &a;
8 int *c4 = &a - (6 * 5 > 30);
9 int *c5 = &a + (6 * 5 >= 30);
10 int c6 = 44 < 33;