summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/c/asm.c
blob: 1fb5015c4876acfac08104e5804c76b7081a7071 (plain)
1
2
3
4
5
6
7
8
9
void foo(void)
{
		asm __volatile__ (
			"subl %2,%0\n\t"
			"sbbl %3,%1"
			:"=a" (l), "=d" (h)
			:"g" (sl), "g" (sh),
			"0" (l), "1" (h));
}