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