aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/branchzu.c
blob: 97adb605614e9c2accded5a60af05958ff1ff9b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "framework.h"

BEGIN_TEST(int)
{
    b = !(a & 0x01);
    if (!b)
        c = 0;
    else
        c = 1;
}
END_TEST()