1*c85f09ccSJohn Levon #include "repeat.h"
2*c85f09ccSJohn Levon 
3*c85f09ccSJohn Levon #define	PAT(X)	int a##X = X;
foo(void)4*c85f09ccSJohn Levon static void foo(void)
5*c85f09ccSJohn Levon {
6*c85f09ccSJohn Levon 	REPEAT2(12, PAT)
7*c85f09ccSJohn Levon }
8*c85f09ccSJohn Levon 
9*c85f09ccSJohn Levon /*
10*c85f09ccSJohn Levon  * check-name: quadratic vars
11*c85f09ccSJohn Levon  * check-command: test-linearize -I. $file
12*c85f09ccSJohn Levon  * check-timeout:
13*c85f09ccSJohn Levon  *
14*c85f09ccSJohn Levon  * check-output-ignore
15*c85f09ccSJohn Levon  * check-output-excludes: phi\\.
16*c85f09ccSJohn Levon  * check-output-excludes: phisrc\\.
17*c85f09ccSJohn Levon  * check-output-excludes: store\\.
18*c85f09ccSJohn Levon  */
19