]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Library/ArmSoftFloatLib/Arm/__aeabi_fcmpeq.c
1a210b934dda14cb1148b50135bec22891d67a61
[mirror_edk2.git] / ArmPkg / Library / ArmSoftFloatLib / Arm / __aeabi_fcmpeq.c
1 /* $NetBSD: __aeabi_fcmpeq.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_fcmpeq.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_fcmpeq(float32, float32);
24
25 int
26 __aeabi_fcmpeq(float32 a, float32 b)
27 {
28
29 return float32_eq(a, b);
30 }