changeset 3:2a6fd371c333

fixed the backslashes to continue the string mult-line
author Me
date Mon, 31 May 2010 15:01:08 -0700
parents 02d5a446d506
children ca61f77ed417
files CoreLoop.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line diff
     1.1 --- a/CoreLoop.c	Mon May 31 14:23:38 2010 -0700
     1.2 +++ b/CoreLoop.c	Mon May 31 15:01:08 2010 -0700
     1.3 @@ -52,7 +52,9 @@
     1.4     framePtr = currPr->framePtr;
     1.5     jmpPt    = currPr->nextInstrPt;
     1.6     
     1.7 -   __asm__ volatile("movl %0, %%esp; movl %1, %%ebp; jmp  %2"
     1.8 +   asm volatile("movl %0, %%esp; \
     1.9 +                 movl %1, %%ebp; \
    1.10 +                 jmp  %2"  
    1.11     /* outputs */ :
    1.12     /* inputs  */ : "g" (stackPtr), "g" (framePtr), "g" (jmpPt)
    1.13     /* clobber */ : "memory" /*just in case, Q: tell about esp, ebp?*/