#ifndef LLVM_CLANG_AST_INTERP_INTEGRAL_AP_H
#define LLVM_CLANG_AST_INTERP_INTEGRAL_AP_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 <unsigned Bits, bool Signed> class Integral;
template <bool Signed> class IntegralAP final { … };
template <bool Signed>
inline llvm::raw_ostream &operator<<(llvm::raw_ostream &OS,
IntegralAP<Signed> I) { … }
template <bool Signed>
IntegralAP<Signed> getSwappedBytes(IntegralAP<Signed> F) { … }
}
}
#endif