summaryrefslogtreecommitdiff
path: root/libc/src/fenv/fesetexceptflag.cpp
blob: 7e480e39d24cf5ffd404f341bc60fe9187fa28bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//===-- Implementation of fesetexceptflag function ------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "src/fenv/fesetexceptflag.h"
#include "src/__support/FPUtil/FEnvUtils.h"
#include "src/__support/common.h"

#include <fenv.h>

namespace __llvm_libc {

LLVM_LIBC_FUNCTION(int, fesetexceptflag,
                   (const fexcept_t *flagp, int excepts)) {
  // Since the return type of fetestexcept is int, we ensure that fexcept_t
  // can fit in int type.
  static_assert(sizeof(int) >= sizeof(fexcept_t),
                "fexcept_t value cannot fit in an int value.");
  int excepts_to_set = static_cast<const int>(*flagp) & excepts;
  fputil::clearExcept(FE_ALL_EXCEPT);
  return fputil::setExcept(excepts_to_set);
}

} // namespace __llvm_libc