summaryrefslogtreecommitdiff
path: root/test/ppindirect.asm
blob: 0a30d0758b3d2e377488a4b43f491b583ebb8183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
;Testname=test; Arguments=-E -o ppindirect.out; Files=ppindirect.out

; Fun tests of the preprocessor indirection mode...

%assign foo1		11
%assign foo11		1111
%assign foo2		22
%assign foo22		2222
%assign foo3		33
%assign foo33		3333
%assign n		2
foo%[foo%[n]]*100
foo%[n]*100
%assign foo%[foo%[n]]	foo%[foo%[n]]*100
;%assign foo%[n]		foo%[n]*100

	foo1
	foo2
	foo3
	foo11
	foo22
	foo33

%define foo33bar	999999
	%[foo%[foo3]bar]
	
%assign bctr 0
%macro bluttan 0
%assign bctr bctr+1
%assign bluttan%[bctr]	bctr
%defstr bstr bluttan%[bctr]
	bluttan%[bctr]
	bstr
%endmacro

%rep 20
	bluttan
%endrep
%rep 20
	bluttan%[bctr]
%assign bctr bctr-1
%endrep