1 //===-- M68kELFTargetObjectFile.h - M68k Object Info ------------*- C++ -*-===//
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-exception
7 //===----------------------------------------------------------------------===//
10 /// This file contains declarations for M68k ELF object file lowering.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_LIB_TARGET_M68K_M68KTARGETOBJECTFILE_H
15 #define LLVM_LIB_TARGET_M68K_M68KTARGETOBJECTFILE_H
17 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
20 class M68kTargetMachine
;
21 class M68kELFTargetObjectFile
: public TargetLoweringObjectFileELF
{
22 const M68kTargetMachine
*TM
;
23 MCSection
*SmallDataSection
;
24 MCSection
*SmallBSSSection
;
27 void Initialize(MCContext
&Ctx
, const TargetMachine
&TM
) override
;
29 } // end namespace llvm