#ifndef LLVM_CLANG_AST_INTERP_INTEGRAL_H
#define LLVM_CLANG_AST_INTERP_INTEGRAL_H
#include "clang/AST/APValue.h"
#include "clang/AST/ComparisonCategories.h"
#include "llvm/ADT/APSInt.h"
#include "llvm/Support/MathExtras.h"
#include "llvm/Support/raw_ostream.h"
#include <cstddef>
#include <cstdint>
#include "Primitives.h"
namespace clang {
namespace interp {
APInt;
APSInt;
template <bool Signed> class IntegralAP;
template <unsigned Bits, bool Signed> struct Repr;
template <> struct Repr<8, false> { … };
template <> struct Repr<16, false> { … };
template <> struct Repr<32, false> { … };
template <> struct Repr<64, false> { … };
template <> struct Repr<8, true> { … };
template <> struct Repr<16, true> { … };
template <> struct Repr<32, true> { … };
template <> struct Repr<64, true> { … };
template <unsigned Bits, bool Signed> class Integral final { … };
template <unsigned Bits, bool Signed>
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, Integral<Bits, Signed> I) { … }
}
}
#endif