]> git.proxmox.com Git - mirror_edk2.git/blob - StdLib/LibC/Softfloat/gedf2.c
StdLib/LibC: avoid LTO code for compiler intrinsics
[mirror_edk2.git] / StdLib / LibC / Softfloat / gedf2.c
1 /* $NetBSD: gedf2.c,v 1.1 2000/06/06 08:15:05 bjh21 Exp $ */
2
3 /** @file
4 *
5 * Copyright (c) 2013 - 2014, ARM Limited. All rights reserved.
6 *
7 * This program and the accompanying materials
8 * are licensed and made available under the terms and conditions of the BSD License
9 * which accompanies this distribution. The full text of the license may be found at
10 * http://opensource.org/licenses/bsd-license.php
11 *
12 * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 *
15 **/
16
17 /*
18 * Written by Ben Harris, 2000. This file is in the Public Domain.
19 */
20
21 #include "softfloat-for-gcc.h"
22 #include "milieu.h"
23 #include "softfloat.h"
24
25 #include <sys/cdefs.h>
26 #if defined(LIBC_SCCS) && !defined(lint)
27 __RCSID("$NetBSD: gedf2.c,v 1.1 2000/06/06 08:15:05 bjh21 Exp $");
28 #endif /* LIBC_SCCS and not lint */
29
30 flag __gedf2(float64, float64);
31
32 flag
33 __gedf2(float64 a, float64 b)
34 {
35
36 /* libgcc1.c says (a >= b) - 1 */
37 return float64_le(b, a) - 1;
38 }