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

Side by Side Diff: newlib/libm/machine/i386/f_ldexpf.S

Issue 961083002: Make x86-32 assembly compatible with LLVM's integrated assembler (Closed) Base URL: https://chromium.googlesource.com/native_client/nacl-newlib.git@master
Patch Set: review Created 5 years, 9 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 | « newlib/libm/machine/i386/f_ldexp.S ('k') | newlib/libm/machine/i386/i386mach.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * ==================================================== 2 * ====================================================
3 * Copyright (C) 1998, 2002 by Red Hat Inc. All rights reserved. 3 * Copyright (C) 1998, 2002 by Red Hat Inc. All rights reserved.
4 * 4 *
5 * Permission to use, copy, modify, and distribute this 5 * Permission to use, copy, modify, and distribute this
6 * software is freely granted, provided that this notice 6 * software is freely granted, provided that this notice
7 * is preserved. 7 * is preserved.
8 * ==================================================== 8 * ====================================================
9 */ 9 */
10 10
(...skipping 10 matching lines...) Expand all
21 21
22 #include "i386mach.h" 22 #include "i386mach.h"
23 23
24 .global SYM (_f_ldexpf) 24 .global SYM (_f_ldexpf)
25 SOTYPE_FUNCTION(_f_ldexpf) 25 SOTYPE_FUNCTION(_f_ldexpf)
26 26
27 .p2align NACLENTRYALIGN 27 .p2align NACLENTRYALIGN
28 SYM (_f_ldexpf): 28 SYM (_f_ldexpf):
29 pushl ebp 29 pushl ebp
30 movl esp,ebp 30 movl esp,ebp
31 » fild 12(ebp) 31 » fildl 12(ebp)
32 flds 8(ebp) 32 flds 8(ebp)
33 fscale 33 fscale
34 fstp st1 34 fstp st1
35 35
36 leave 36 leave
37 /* ret */ 37 /* ret */
38 naclret 38 naclret
39 39
40 #endif 40 #endif
OLDNEW
« no previous file with comments | « newlib/libm/machine/i386/f_ldexp.S ('k') | newlib/libm/machine/i386/i386mach.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698