summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2007-01-09 03:36:59 +0100
committerAdrian Bunk <bunk@stusta.de>2007-01-09 03:36:59 +0100
commite02612a14b2b714e9d231d14c91e729f0f168299 (patch)
treedcc6eeb6c5e04311de32cd1d3fd825626240d449
parent7d83cf4b5fc61b4a890a03c912e3df2ad2914091 (diff)
x86_64: re-add a newline to RESTORE_CONTEXT
RESTORE_CONTEXT lost a newline: http://www.mail-archive.com/kgdb-bugreport@lists.sourceforge.net/msg00559.html Reported by Steven M. Christey. Signed-off-by: Adrian Bunk <bunk@stusta.de>
-rw-r--r--include/asm-x86_64/system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86_64/system.h b/include/asm-x86_64/system.h
index 7b2c7aa2b06e..dacec59909b7 100644
--- a/include/asm-x86_64/system.h
+++ b/include/asm-x86_64/system.h
@@ -21,7 +21,7 @@
/* frame pointer must be last for get_wchan */
#define SAVE_CONTEXT "pushf ; pushq %%rbp ; movq %%rsi,%%rbp\n\t"
-#define RESTORE_CONTEXT "movq %%rbp,%%rsi ; popq %%rbp ; popf\t"
+#define RESTORE_CONTEXT "movq %%rbp,%%rsi ; popq %%rbp ; popf\n\t"
#define __EXTRA_CLOBBER \
,"rcx","rbx","rdx","r8","r9","r10","r11","r12","r13","r14","r15"