Path: blob/main/contrib/llvm-project/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
35269 views
//===-- AVRSelectionDAGInfo.h - AVR SelectionDAG 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// This file defines the AVR subclass for SelectionDAGTargetInfo.9//10//===----------------------------------------------------------------------===//1112#ifndef LLVM_AVR_SELECTION_DAG_INFO_H13#define LLVM_AVR_SELECTION_DAG_INFO_H1415#include "llvm/CodeGen/SelectionDAGTargetInfo.h"1617namespace llvm {1819/// Holds information about the AVR instruction selection DAG.20class AVRSelectionDAGInfo : public SelectionDAGTargetInfo {21public:22};2324} // end namespace llvm2526#endif // LLVM_AVR_SELECTION_DAG_INFO_H272829