Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / utils / TableGen / Types.h
blobf369d61785c4bac506b52c78964452e85dd14aa4
1 //===- Types.h - Helper for the selection of C++ types. ---------*- 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-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_UTILS_TABLEGEN_TYPES_H
10 #define LLVM_UTILS_TABLEGEN_TYPES_H
12 #include <cstdint>
14 namespace llvm {
15 /// Returns the smallest unsigned integer type that can hold the given range.
16 /// MaxSize indicates the largest size of integer to consider (in bits) and only
17 /// supports values of at least 32.
18 const char *getMinimalTypeForRange(uint64_t Range, unsigned MaxSize = 64);
21 #endif