1f08c3bdfSopenharmony_cistatic _Bool blt(int a, int b)	{ return  (a <  b); }
2f08c3bdfSopenharmony_cistatic _Bool bnge(int a, int b)	{ return !(a >= b); }
3f08c3bdfSopenharmony_cistatic _Bool bgt(int a, int b)	{ return  (a >  b); }
4f08c3bdfSopenharmony_cistatic _Bool bnle(int a, int b)	{ return !(a <= b); }
5f08c3bdfSopenharmony_cistatic _Bool ble(int a, int b)	{ return  (a <= b); }
6f08c3bdfSopenharmony_cistatic _Bool bngt(int a, int b)	{ return !(a >  b); }
7f08c3bdfSopenharmony_cistatic _Bool bge(int a, int b)	{ return  (a >= b); }
8f08c3bdfSopenharmony_cistatic _Bool bnlt(int a, int b)	{ return !(a <  b); }
9f08c3bdfSopenharmony_ci
10f08c3bdfSopenharmony_ci/*
11f08c3bdfSopenharmony_ci * check-name: optim/setcc-setcc
12f08c3bdfSopenharmony_ci * check-command: test-linearize $file
13f08c3bdfSopenharmony_ci * check-output-ignore
14f08c3bdfSopenharmony_ci *
15f08c3bdfSopenharmony_ci * check-output-excludes: set..\\.32
16f08c3bdfSopenharmony_ci * check-output-excludes: setne\\.1
17f08c3bdfSopenharmony_ci * check-output-excludes: seteq\\.1
18f08c3bdfSopenharmony_ci * check-output-contains: set[gt][te]\\.1
19f08c3bdfSopenharmony_ci */
20