- Mark caller-saved registers as clobbered before calling KDB

This commit is contained in:
Jan Stoess 2007-11-27 12:11:10 +01:00
parent acf8a015f4
commit dd07719720
1 changed files with 2 additions and 2 deletions

View File

@ -29,11 +29,11 @@
"callq *%2 \n" \
"popq %%rsp \n" \
"popq %%rbp \n" \
: "=r"(dummy), "=D"(dummy), "=r"(dummy) \
: "=S"(dummy), "=D"(dummy), "=a"(dummy) \
: "0"(&kdb_stack[KDB_STACK_SIZE]), \
"1"(&param), \
"2"(get_kip()->kdebug_entry) \
: "memory");
: "memory", "rcx" , "rdx", "r8", "r9", "r10" , "r11" );
#else