about summary refs log tree commit diff
path: root/sysdeps/x86_64
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2004-01-12 16:41:44 +0000
committerAndreas Jaeger <aj@suse.de>2004-01-12 16:41:44 +0000
commita5ee0b9e1219191b3f321542138f0c21102df6f1 (patch)
tree93e4e530e1c4dcef389e806e9d2c9d5020fc5d90 /sysdeps/x86_64
parent7e7458e3015fdc8056e0982d1906d10b468577e1 (diff)
downloadglibc-a5ee0b9e1219191b3f321542138f0c21102df6f1.tar.gz
glibc-a5ee0b9e1219191b3f321542138f0c21102df6f1.tar.xz
glibc-a5ee0b9e1219191b3f321542138f0c21102df6f1.zip
* sysdeps/x86_64/strcspn.S: Fix typo in last patch.
Diffstat (limited to 'sysdeps/x86_64')
-rw-r--r--sysdeps/x86_64/strcspn.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/x86_64/strcspn.S b/sysdeps/x86_64/strcspn.S
index 05d98d0200..63af04aeab 100644
--- a/sysdeps/x86_64/strcspn.S
+++ b/sysdeps/x86_64/strcspn.S
@@ -40,7 +40,7 @@ ENTRY (strcspn)
 	   table.  */
 	movq %rdi, %r8			/* Save value.  */
 	subq $256, %rsp			/* Make space for 256 bytes.  */
-	cfi_adjust_cfa_offset(-256)
+	cfi_adjust_cfa_offset(256)
 	movq $32,  %rcx			/* 32*8 bytes = 256 bytes.  */
 	movq %rsp, %rdi
 	xorq %rax, %rax			/* We store 0s.  */