# HG changeset patch # User Me # Date 1275343268 25200 # Node ID 2a6fd371c333c3c144fb6efc86797e626aa07442 # Parent 02d5a446d506a2ec6dc065fac767e61456d29a5b fixed the backslashes to continue the string mult-line diff -r 02d5a446d506 -r 2a6fd371c333 CoreLoop.c --- a/CoreLoop.c Mon May 31 14:23:38 2010 -0700 +++ b/CoreLoop.c Mon May 31 15:01:08 2010 -0700 @@ -52,7 +52,9 @@ framePtr = currPr->framePtr; jmpPt = currPr->nextInstrPt; - __asm__ volatile("movl %0, %%esp; movl %1, %%ebp; jmp %2" + asm volatile("movl %0, %%esp; \ + movl %1, %%ebp; \ + jmp %2" /* outputs */ : /* inputs */ : "g" (stackPtr), "g" (framePtr), "g" (jmpPt) /* clobber */ : "memory" /*just in case, Q: tell about esp, ebp?*/