brintos

brintos / llvm-project-archived public Read only

0
0
Text · 826 B · 5186547 Raw
23 lines · c
1//===----- lib/fp_mode.c - Floaing-point environment mode utilities --C -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// This file provides a default implementation of fp_mode.h for architectures10// that does not support or does not have an implementation of floating point11// environment mode.12//13//===----------------------------------------------------------------------===//14 15#include "fp_mode.h"16 17// IEEE-754 default rounding (to nearest, ties to even).18CRT_FE_ROUND_MODE __fe_getround(void) { return CRT_FE_TONEAREST; }19 20int __fe_raise_inexact(void) {21  return 0;22}23