Path: blob/main/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
35294 views
//===-- AVRMCAsmInfo.h - AVR asm properties ---------------------*- 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// This file contains the declaration of the AVRMCAsmInfo class.9//10//===----------------------------------------------------------------------===//1112#ifndef LLVM_AVR_ASM_INFO_H13#define LLVM_AVR_ASM_INFO_H1415#include "llvm/MC/MCAsmInfo.h"1617namespace llvm {1819class Triple;2021/// Specifies the format of AVR assembly files.22class AVRMCAsmInfo : public MCAsmInfo {23public:24explicit AVRMCAsmInfo(const Triple &TT, const MCTargetOptions &Options);25};2627} // end namespace llvm2829#endif // LLVM_AVR_ASM_INFO_H303132