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