aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/instr/branchz.c
blob: fb86d357fa369a09b799b64fb8bc537fd7b09587 (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_TEST()