Path: blob/main/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/M68kMCAsmInfo.h
35294 views
//===-- M68kMCAsmInfo.h - M68k Asm Info -------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7///8/// \file9/// This file contains the declarations of the M68k MCAsmInfo properties.10///11//===----------------------------------------------------------------------===//1213#ifndef LLVM_LIB_TARGET_M68K_MCTARGETDESC_M68KMCASMINFO_H14#define LLVM_LIB_TARGET_M68K_MCTARGETDESC_M68KMCASMINFO_H1516#include "llvm/MC/MCAsmInfoELF.h"1718namespace llvm {19class Triple;2021class M68kELFMCAsmInfo : public MCAsmInfoELF {22void anchor() override;2324public:25explicit M68kELFMCAsmInfo(const Triple &Triple);26};2728} // namespace llvm2930#endif // LLVM_LIB_TARGET_M68K_MCTARGETDESC_M68KMCASMINFO_H313233