OLD | NEW |
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 Loading... |
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 |
OLD | NEW |