mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
33 lines
279 B
C
33 lines
279 B
C
void always_false_1() {
|
|
if(0) {
|
|
l1:;
|
|
}
|
|
l2:;
|
|
}
|
|
|
|
void always_false_2() {
|
|
if(0)
|
|
l1:;
|
|
l2:;
|
|
}
|
|
|
|
void always_true_1() {
|
|
if(1) {
|
|
l1:;
|
|
}
|
|
l2:;
|
|
}
|
|
|
|
void always_true_2() {
|
|
if(1)
|
|
l1:;
|
|
l2:;
|
|
}
|
|
|
|
void normal(int x, int y) {
|
|
if(x == y) {
|
|
l1:;
|
|
}
|
|
l2:;
|
|
}
|