GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: lib/libcompiler_rt/extendhfsf2.c Lines: 0 2 0.0 %
Date: 2017-11-07 Branches: 0 0 0.0 %

Line Branch Exec Source
1
//===-- lib/extendhfsf2.c - half -> single conversion -------------*- C -*-===//
2
//
3
//                     The LLVM Compiler Infrastructure
4
//
5
// This file is dual licensed under the MIT and the University of Illinois Open
6
// Source Licenses. See LICENSE.TXT for details.
7
//
8
//===----------------------------------------------------------------------===//
9
//
10
11
#define SRC_HALF
12
#define DST_SINGLE
13
#include "fp_extend_impl.inc"
14
15
ARM_EABI_FNALIAS(h2f, extendhfsf2)
16
17
// Use a forwarding definition and noinline to implement a poor man's alias,
18
// as there isn't a good cross-platform way of defining one.
19
COMPILER_RT_ABI NOINLINE float __extendhfsf2(uint16_t a) {
20
    return __extendXfYf2__(a);
21
}
22
23
COMPILER_RT_ABI float __gnu_h2f_ieee(uint16_t a) {
24
    return __extendhfsf2(a);
25
}