equal
deleted
inserted
replaced
|
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of the License "ARM EABI LICENCE.txt" |
|
5 // which accompanies this distribution, and is available |
|
6 // in kernel/eka/compsupp. |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // This file is part of dfprvct.dll. |
|
15 // |
|
16 |
|
17 #if __ARMCC_VERSION > 300000 |
|
18 |
|
19 __asm void __Symbian_exporter_dummy() |
|
20 { |
|
21 CODE32 |
|
22 |
|
23 IMPORT __ARM_scalbn [DYNAMIC] |
|
24 IMPORT __ARM_scalbnf [DYNAMIC] |
|
25 |
|
26 EXPORT __softfp_scalbln [DYNAMIC] |
|
27 EXPORT __softfp_scalblnl [DYNAMIC] |
|
28 EXPORT __softfp_scalbn [DYNAMIC] |
|
29 EXPORT __softfp_scalbnl [DYNAMIC] |
|
30 EXPORT __softfp_scalblnf [DYNAMIC] |
|
31 EXPORT __softfp_scalbnf [DYNAMIC] |
|
32 |
|
33 __softfp_scalbln |
|
34 __softfp_scalblnl |
|
35 __softfp_scalbn |
|
36 __softfp_scalbnl |
|
37 b __ARM_scalbn |
|
38 |
|
39 __softfp_scalblnf |
|
40 __softfp_scalbnf |
|
41 b __ARM_scalbnf |
|
42 } |
|
43 |
|
44 #endif |
|
45 |