Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / modules / std / cstdint.inc
blobf6de4472218dacdf9896971b656be5a68293c80d
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
10 export namespace std {
11   // signed
12   using std::int8_t _LIBCPP_USING_IF_EXISTS;
13   using std::int16_t _LIBCPP_USING_IF_EXISTS;
14   using std::int32_t _LIBCPP_USING_IF_EXISTS;
15   using std::int64_t _LIBCPP_USING_IF_EXISTS;
17   using std::int_fast16_t;
18   using std::int_fast32_t;
19   using std::int_fast64_t;
20   using std::int_fast8_t;
22   using std::int_least16_t;
23   using std::int_least32_t;
24   using std::int_least64_t;
25   using std::int_least8_t;
27   using std::intmax_t;
29   using std::intptr_t _LIBCPP_USING_IF_EXISTS;
31   // unsigned
32   using std::uint8_t _LIBCPP_USING_IF_EXISTS;
33   using std::uint16_t _LIBCPP_USING_IF_EXISTS;
34   using std::uint32_t _LIBCPP_USING_IF_EXISTS;
35   using std::uint64_t _LIBCPP_USING_IF_EXISTS;
37   using std::uint_fast16_t;
38   using std::uint_fast32_t;
39   using std::uint_fast64_t;
40   using std::uint_fast8_t;
42   using std::uint_least16_t;
43   using std::uint_least32_t;
44   using std::uint_least64_t;
45   using std::uint_least8_t;
47   using std::uintmax_t;
49   using std::uintptr_t _LIBCPP_USING_IF_EXISTS;
50 } // namespace std