/
GitCaptain
/
llvm-project
Обзор
Документация
Войти
/
GitCaptain
/
llvm-project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
fix-tests
libc/src/fenv/feupdateenv.cpp
24 строки
774 B
Tue Ly
[libc] Remove the redundant header FPUtil/FEnvUtils.h
04 мар 2022, 22:09
04 мар 2022, 22:09
76ec69a
Код
Авторство
О чём код?
//===-- Implementation of feupdateenv 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/feupdateenv.h" #include "src/__support/FPUtil/FEnvImpl.h" #include "src/__support/common.h" #include <fenv.h> namespace __llvm_libc { LLVM_LIBC_FUNCTION(int, feupdateenv, (const fenv_t *envp)) { int current_excepts = fputil::test_except(FE_ALL_EXCEPT); if (fputil::set_env(envp) != 0) return -1; return fputil::raise_except(current_excepts); } } // namespace __llvm_libc