summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/02510-asm.c
blob: 6609bf9b552b84a6b836cffea07adde917b1f58a (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));
}