diff options
Diffstat (limited to 'libc/arch-x86/syscalls/execve.S')
| -rw-r--r-- | libc/arch-x86/syscalls/execve.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/arch-x86/syscalls/execve.S b/libc/arch-x86/syscalls/execve.S index 8e6c432..95523bc 100644 --- a/libc/arch-x86/syscalls/execve.S +++ b/libc/arch-x86/syscalls/execve.S @@ -6,6 +6,10 @@ ENTRY(execve) pushl %ebx pushl %ecx pushl %edx + .cfi_def_cfa_offset 12 + .cfi_rel_offset ebx, 0 + .cfi_rel_offset ecx, 4 + .cfi_rel_offset edx, 8 mov 16(%esp), %ebx mov 20(%esp), %ecx mov 24(%esp), %edx |
