summaryrefslogtreecommitdiff
path: root/com32/lib/setjmp.S
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2006-05-03 17:32:15 -0700
committerH. Peter Anvin <hpa@zytor.com>2006-05-03 17:32:15 -0700
commit28eecd8965aedbd75727fb0797a2e7033d5c54ee (patch)
tree1cac9ffc5f7fe7fd82d59b4accd7b8cf85762f74 /com32/lib/setjmp.S
parentf8c463722022008c8412a69f90576d2bf38818ed (diff)
downloadsyslinux-28eecd8965aedbd75727fb0797a2e7033d5c54ee.tar.gz
Across-the-board stealth whitespace cleanup
Diffstat (limited to 'com32/lib/setjmp.S')
-rw-r--r--com32/lib/setjmp.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/com32/lib/setjmp.S b/com32/lib/setjmp.S
index 5c5fbeae..53b2dee8 100644
--- a/com32/lib/setjmp.S
+++ b/com32/lib/setjmp.S
@@ -20,7 +20,7 @@
.globl _setjmp
.type _setjmp, @function
_setjmp: # gcc 4.0.1 wants this as an alias?
-
+
.globl setjmp
.type setjmp, @function
setjmp:
@@ -28,7 +28,7 @@ setjmp:
movl %eax,%edx
#else
movl 4(%esp),%edx
-#endif
+#endif
popl %ecx # Return address, and adjust the stack
xorl %eax,%eax # Return value
movl %ebx,(%edx)