aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/cmpe-and0.c
blob: 7db60836556843cd6fe6aee3480766002a0bd6ee (plain)
1
2
3
4
5
6
7
8
9
10
11
int cmpe_and_eq(int a) { return ((a & 0xff00) == 0xff01) + 1; }
int cmpe_and_ne(int a) { return ((a & 0xff00) != 0xff01) + 0; }

/*
 * check-name: cmpe-and0
 * check-command: test-linearize -Wno-decl $file
 * check-known-to-fail
 *
 * check-output-ignore
 * check-output-returns: 1
 */