Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
35269 views
1
//===-- AVRSelectionDAGInfo.h - AVR SelectionDAG Info -----------*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
//
9
// This file defines the AVR subclass for SelectionDAGTargetInfo.
10
//
11
//===----------------------------------------------------------------------===//
12
13
#ifndef LLVM_AVR_SELECTION_DAG_INFO_H
14
#define LLVM_AVR_SELECTION_DAG_INFO_H
15
16
#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
17
18
namespace llvm {
19
20
/// Holds information about the AVR instruction selection DAG.
21
class AVRSelectionDAGInfo : public SelectionDAGTargetInfo {
22
public:
23
};
24
25
} // end namespace llvm
26
27
#endif // LLVM_AVR_SELECTION_DAG_INFO_H
28
29