Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: sysdeps/i386/fpu/s_llrintl.S

Issue 3539003: Fix up RET instructions in sysdeps/i386/fpu (Closed) Base URL: ssh://gitrw.chromium.org/nacl-glibc
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sysdeps/i386/fpu/s_llrintf.S ('k') | sysdeps/i386/fpu/s_log1p.S » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Round argument to nearest integral value according to current rounding 1 /* Round argument to nearest integral value according to current rounding
2 direction. 2 direction.
3 Copyright (C) 1997, 2005 Free Software Foundation, Inc. 3 Copyright (C) 1997, 2005 Free Software Foundation, Inc.
4 This file is part of the GNU C Library. 4 This file is part of the GNU C Library.
5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. 5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6 6
7 The GNU C Library is free software; you can redistribute it and/or 7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public 8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either 9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version. 10 version 2.1 of the License, or (at your option) any later version.
(...skipping 14 matching lines...) Expand all
25 ENTRY(__llrintl) 25 ENTRY(__llrintl)
26 fldt 4(%esp) 26 fldt 4(%esp)
27 subl $8, %esp 27 subl $8, %esp
28 cfi_adjust_cfa_offset (8) 28 cfi_adjust_cfa_offset (8)
29 fistpll (%esp) 29 fistpll (%esp)
30 fwait 30 fwait
31 popl %eax 31 popl %eax
32 cfi_adjust_cfa_offset (-4) 32 cfi_adjust_cfa_offset (-4)
33 popl %edx 33 popl %edx
34 cfi_adjust_cfa_offset (-4) 34 cfi_adjust_cfa_offset (-4)
35 » ret 35 » NACLRET
36 END(__llrintl) 36 END(__llrintl)
37 weak_alias (__llrintl, llrintl) 37 weak_alias (__llrintl, llrintl)
OLDNEW
« no previous file with comments | « sysdeps/i386/fpu/s_llrintf.S ('k') | sysdeps/i386/fpu/s_log1p.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698