brintos

brintos / llvm-project-archived public Read only

0
0
Text · 311 B · e2b3f1a Raw
13 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o - 2>&1 | not grep warning2// RUN: %clang_cc1 -fno-ident -emit-llvm %s -o - | grep @b | count 13 4int a, b;5int *c1 = 1 < 2 ? &a : &b;6int *c2 = 3 != 3LL ? &b : &a;7int *c3 = !(3 <= 4.0) ? &b : &a;8int *c4 = &a - (6 * 5 > 30);9int *c5 = &a + (6 * 5 >= 30);10int c6 = 44 < 33;11 12 13