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

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