llvm/llvm/lib/Support/MSP430AttributeParser.cpp

//===-- MSP430AttributeParser.cpp - MSP430 Attribute Parser ---------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

#include "llvm/Support/MSP430AttributeParser.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/Support/ErrorHandling.h"

usingnamespacellvm;
usingnamespacellvm::MSP430Attrs;

constexpr std::array<MSP430AttributeParser::DisplayHandler, 4>
    MSP430AttributeParser::DisplayRoutines{};

Error MSP430AttributeParser::parseISA(AttrType Tag) {}

Error MSP430AttributeParser::parseCodeModel(AttrType Tag) {}

Error MSP430AttributeParser::parseDataModel(AttrType Tag) {}

Error MSP430AttributeParser::parseEnumSize(AttrType Tag) {}

Error MSP430AttributeParser::handler(uint64_t Tag, bool &Handled) {}