summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/c/10006-bug_2331.c
blob: 67088d942bef1b5cb6277056306d531f6423e428 (plain)
1
2
3
4
5
6
7
8
9
10
11
#define SET_STACK(stack)            \
	do {                            \
		__asm__ __volatile__ (      \
			"mov S, %[oper]"        \
			:                       \
			: [oper] "r" (stack)    \
			: "S"                   \
			);                      \
	} while (0)

int somearray[10];