Path: blob/main/contrib/llvm-project/libc/shared/fp_bits.h
213726 views
//===-- Floating point number utils -----------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_LIBC_SHARED_FP_BITS_H9#define LLVM_LIBC_SHARED_FP_BITS_H1011#include "libc_common.h"12#include "src/__support/FPUtil/FPBits.h"1314namespace LIBC_NAMESPACE_DECL {15namespace shared {1617using fputil::FPBits;1819} // namespace shared20} // namespace LIBC_NAMESPACE_DECL2122#endif // LLVM_LIBC_SHARED_FP_BITS_H232425