diff options
Diffstat (limited to 'libc/arch-x86/syscalls/clock_getres.S')
-rw-r--r-- | libc/arch-x86/syscalls/clock_getres.S | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/arch-x86/syscalls/clock_getres.S b/libc/arch-x86/syscalls/clock_getres.S index ce7e6f7..5fef51a 100644 --- a/libc/arch-x86/syscalls/clock_getres.S +++ b/libc/arch-x86/syscalls/clock_getres.S @@ -4,10 +4,11 @@ ENTRY(clock_getres) pushl %ebx - pushl %ecx .cfi_def_cfa_offset 8 .cfi_rel_offset ebx, 0 - .cfi_rel_offset ecx, 4 + pushl %ecx + .cfi_adjust_cfa_offset 4 + .cfi_rel_offset ecx, 0 mov 12(%esp), %ebx mov 16(%esp), %ecx movl $__NR_clock_getres, %eax |