//===- DynamicAPInt.cpp - DynamicAPInt Implementation -----------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "llvm/ADT/DynamicAPInt.h" #include "llvm/ADT/Hashing.h" #include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" usingnamespacellvm; hash_code llvm::hash_value(const DynamicAPInt &X) { … } void DynamicAPInt::static_assert_layout() { … } raw_ostream &DynamicAPInt::print(raw_ostream &OS) const { … } void DynamicAPInt::dump() const { … }