//===- MipsABIFlagsSection.cpp - Mips ELF ABI Flags Section ---------------===// // // 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 "MCTargetDesc/MipsABIFlagsSection.h" #include "llvm/ADT/StringRef.h" #include "llvm/MC/MCStreamer.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/MipsABIFlags.h" usingnamespacellvm; uint8_t MipsABIFlagsSection::getFpABIValue() { … } StringRef MipsABIFlagsSection::getFpABIString(FpABIKind Value) { … } uint8_t MipsABIFlagsSection::getCPR1SizeValue() { … } namespace llvm { MCStreamer &operator<<(MCStreamer &OS, MipsABIFlagsSection &ABIFlagsSection) { … } } // end namespace llvm