aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/instr/individual/for.c
blob: 373ab6bdfb787c344c222670dd92a7e8596df10f (plain)
1
2
3
4
5
6
7
8
9
#include "framework.h"

BEGIN_TEST(int)
{
    int j;
    for (j = 0 ; j < 10 ; j++)
        c += a;
}
END_TEST32()