32 lines · c
1//===-- M68kELFTargetObjectFile.h - M68k Object Info ------------*- 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-exception6//7//===----------------------------------------------------------------------===//8///9/// \file10/// This file contains declarations for M68k ELF object file lowering.11///12//===----------------------------------------------------------------------===//13 14#ifndef LLVM_LIB_TARGET_M68K_M68KTARGETOBJECTFILE_H15#define LLVM_LIB_TARGET_M68K_M68KTARGETOBJECTFILE_H16 17#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"18 19namespace llvm {20class M68kTargetMachine;21class M68kELFTargetObjectFile : public TargetLoweringObjectFileELF {22 const M68kTargetMachine *TM;23 MCSection *SmallDataSection;24 MCSection *SmallBSSSection;25 26public:27 void Initialize(MCContext &Ctx, const TargetMachine &TM) override;28};29} // end namespace llvm30 31#endif // LLVM_LIB_TARGET_M68K_M68KTARGETOBJECTFILE_H32