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