brintos

brintos / llvm-project-archived public Read only

0
0
Text · 774 B · f3ac540 Raw
27 lines · c
1//===-- Utilities for triple-double data type. ------------------*- 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#ifndef LLVM_LIBC_SRC___SUPPORT_FPUTIL_TRIPLE_DOUBLE_H10#define LLVM_LIBC_SRC___SUPPORT_FPUTIL_TRIPLE_DOUBLE_H11 12#include "src/__support/macros/config.h"13 14namespace LIBC_NAMESPACE_DECL {15namespace fputil {16 17struct TripleDouble {18  double lo = 0.0;19  double mid = 0.0;20  double hi = 0.0;21};22 23} // namespace fputil24} // namespace LIBC_NAMESPACE_DECL25 26#endif // LLVM_LIBC_SRC___SUPPORT_FPUTIL_TRIPLE_DOUBLE_H27