1f08c3bdfSopenharmony_ciint cmp_eq(int a) { return ((a | 1) != 0) + 0; }
2f08c3bdfSopenharmony_ciint cmp_ne(int a) { return ((a | 1) == 0) + 1; }
3f08c3bdfSopenharmony_ci
4f08c3bdfSopenharmony_ci/*
5f08c3bdfSopenharmony_ci * check-name: cmpe-or0
6f08c3bdfSopenharmony_ci * check-command: test-linearize -Wno-decl $file
7f08c3bdfSopenharmony_ci *
8f08c3bdfSopenharmony_ci * check-output-ignore
9f08c3bdfSopenharmony_ci * check-output-returns: 1
10f08c3bdfSopenharmony_ci */
11