]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/constant-comparison.c
Vendor import of clang release_38 branch r258549:
[FreeBSD/FreeBSD.git] / test / CodeGen / constant-comparison.c
1 // RUN: %clang_cc1 -emit-llvm %s -o - 2>&1 | not grep warning
2 // RUN: %clang_cc1 -emit-llvm %s -o - | grep @b | count 1
3
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;
11
12