]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Library/ArmSoftFloatLib/Arm/__aeabi_dcmpeq.c
31942ac9e3464af18b3c9ffc63da02b54678d818
[mirror_edk2.git] / ArmPkg / Library / ArmSoftFloatLib / Arm / __aeabi_dcmpeq.c
1 /* $NetBSD: __aeabi_dcmpeq.c,v 1.1 2013/04/16 10:37:39 matt Exp $ */
2
3 /** @file
4 *
5 * Copyright (c) 2013 - 2014, ARM Limited. All rights reserved.
6 *
7 * SPDX-License-Identifier: BSD-2-Clause-Patent
8 *
9 **/
10
11 /*
12 * Written by Ben Harris, 2000. This file is in the Public Domain.
13 */
14
15 #if defined(LIBC_SCCS) && !defined(lint)
16 __RCSID("$NetBSD: __aeabi_dcmpeq.c,v 1.1 2013/04/16 10:37:39 matt Exp $");
17 #endif /* LIBC_SCCS and not lint */
18
19 #include "softfloat-for-gcc.h"
20 #include "milieu.h"
21 #include "softfloat.h"
22
23 int __aeabi_dcmpeq(float64, float64);
24
25 int
26 __aeabi_dcmpeq(float64 a, float64 b)
27 {
28
29 return float64_eq(a, b);
30 }