diff options
author | Roland McGrath <roland@gnu.org> | 2005-04-29 18:33:41 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-04-29 18:33:41 +0000 |
commit | cb8d9c938277484b0627aca14a12b06c29786071 (patch) | |
tree | b72da0c45de42a81191979bf19bc33c0cdea4ff8 /sysdeps | |
parent | 458901c61e1f756a33b94c3851fc70a947eb2d29 (diff) | |
download | glibc-cb8d9c938277484b0627aca14a12b06c29786071.tar.gz glibc-cb8d9c938277484b0627aca14a12b06c29786071.tar.xz glibc-cb8d9c938277484b0627aca14a12b06c29786071.zip |
2005-04-29 Roland McGrath <roland@redhat.com>
* sysdeps/i386/sysdep.h (CALL_MCOUNT): Fix typo in last change.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/i386/sysdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/sysdep.h b/sysdeps/i386/sysdep.h index 6c1df24b44..56ba304328 100644 --- a/sysdeps/i386/sysdep.h +++ b/sysdeps/i386/sysdep.h @@ -94,7 +94,7 @@ /* The mcount code relies on a normal frame pointer being on the stack to locate our caller, so push one just for its benefit. */ #define CALL_MCOUNT \ - pushl %ebp; cfi_adjust_cfa_offset (4); \ movl %esp, %ebp; \ + pushl %ebp; cfi_adjust_cfa_offset (4); movl %esp, %ebp; \ cfi_def_cfa_register (ebp); call JUMPTARGET(mcount); \ popl %ebp; cfi_def_cfa (esp, 4); #else |