summaryrefslogtreecommitdiffstats
path: root/polly/lib/External/ppcg/tests/scalar.c
blob: ffd779798c042c3ff6f1874af1cb245414442892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdlib.h>

int main()
{
	int a;
#pragma scop
	a = 1;
#pragma endscop
	if (a != 1)
		return EXIT_FAILURE;

	return EXIT_SUCCESS;
}
OpenPOWER on IntegriCloud