//===-- MSP430AttributeParser.h - MSP430 Attribute Parser -------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// /// /// \file /// This file contains support routines for parsing MSP430 ELF build attributes. /// //===----------------------------------------------------------------------===// #ifndef LLVM_SUPPORT_MSP430ATTRIBUTEPARSER_H #define LLVM_SUPPORT_MSP430ATTRIBUTEPARSER_H #include "llvm/Support/ELFAttributeParser.h" #include "llvm/Support/MSP430Attributes.h" namespace llvm { class MSP430AttributeParser : public ELFAttributeParser { … }; } // namespace llvm #endif