missing labels and ; from last change.
2002-10-11 Roland McGrath <roland@redhat.com>
+ * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER): Add
+ missing labels and ; from last change.
+
* stdio-common/tst-sscanf.c (val_double): Append .0 to large whole
number literals, so they are doubles instead of ints.
#define SYSCALL_ERROR_HANDLER /* Nothing here; code in sysdep.S is used. */
#elif USE___THREAD
# define SYSCALL_ERROR_HANDLER \
+0: \
movq errno@GOTTPOFF(%rip), %rcx; \
xorq %rdx, %rdx; \
subq %rax, %rdx; \
- movl %eax, %fs:0(%rcx)
+ movl %eax, %fs:0(%rcx);
#elif RTLD_PRIVATE_ERRNO
# define SYSCALL_ERROR_HANDLER \
+0: \
leaq errno(%rip), %rcx; \
xorq %rdx, %rdx; \
subq %rax, %rdx; \
- movl %eax, (%rcx)
+ movl %eax, (%rcx);
#elif defined _LIBC_REENTRANT
/* Store (- %rax) into errno through the GOT.
Note that errno occupies only 4 bytes. */