|
1 | | -//===-- lib/Decimal/big-radix-floating-point.h ------------------*- C++ -*-===// |
| 1 | +//===-- lib/Common/big-radix-floating-point.h -------------------*- C++ -*-===// |
2 | 2 | // |
3 | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | 4 | // See https://llvm.org/LICENSE.txt for license information. |
5 | 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | 6 | // |
7 | 7 | //===----------------------------------------------------------------------===// |
8 | 8 |
|
9 | | -#ifndef FORTRAN_DECIMAL_BIG_RADIX_FLOATING_POINT_H_ |
10 | | -#define FORTRAN_DECIMAL_BIG_RADIX_FLOATING_POINT_H_ |
| 9 | +#ifndef FORTRAN_COMMON_BIG_RADIX_FLOATING_POINT_H_ |
| 10 | +#define FORTRAN_COMMON_BIG_RADIX_FLOATING_POINT_H_ |
11 | 11 |
|
12 | 12 | // This is a helper class for use in floating-point conversions between |
13 | 13 | // binary and decimal representations. It holds a multiple-precision |
|
21 | 21 | // for conversions between binary and decimal representations; it is not |
22 | 22 | // a general-purpose facility. |
23 | 23 |
|
| 24 | +#include "flang/Common/binary-floating-point.h" |
24 | 25 | #include "flang/Common/bit-population-count.h" |
| 26 | +#include "flang/Common/decimal.h" |
25 | 27 | #include "flang/Common/leading-zero-bit-count.h" |
26 | 28 | #include "flang/Common/uint128.h" |
27 | | -#include "flang/Decimal/binary-floating-point.h" |
28 | | -#include "flang/Decimal/decimal.h" |
29 | 29 | #include <cinttypes> |
30 | 30 | #include <limits> |
31 | 31 | #include <type_traits> |
@@ -393,4 +393,4 @@ template <int PREC, int LOG10RADIX = 16> class BigRadixFloatingPointNumber { |
393 | 393 | enum FortranRounding rounding_ { RoundNearest }; |
394 | 394 | }; |
395 | 395 | } // namespace Fortran::decimal |
396 | | -#endif |
| 396 | +#endif /* FORTRAN_COMMON_BIG_RADIX_FLOATING_POINT_H_ */ |
0 commit comments