aboutsummaryrefslogtreecommitdiffstats
path: root/test/kvx/instr/individual/branchz.c
blob: d3e021b5e09dd91e8af73943a4a088fe22b1d24a (plain)
1
2
3
4
5
6
7
8
9
10
#include "framework.h"

BEGIN_TEST(int)
{
    if (a & 0x1 == 0)
        c = 0;
    else
        c = 1;
}
END_TEST32()