2016-01-08 14:32:27 +08:00
|
|
|
//===-- AVRSelectionDAGInfo.h - AVR SelectionDAG Info -----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2016-01-28 00:32:26 +08:00
|
|
|
// This file defines the AVR subclass for SelectionDAGTargetInfo.
|
2016-01-08 14:32:27 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_AVR_SELECTION_DAG_INFO_H
|
|
|
|
#define LLVM_AVR_SELECTION_DAG_INFO_H
|
|
|
|
|
2016-01-28 00:32:26 +08:00
|
|
|
#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
|
2016-01-08 14:32:27 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2016-05-18 17:43:01 +08:00
|
|
|
|
|
|
|
/// Holds information about the AVR instruction selection DAG.
|
2016-01-28 00:32:26 +08:00
|
|
|
class AVRSelectionDAGInfo : public SelectionDAGTargetInfo {
|
2016-01-08 14:32:27 +08:00
|
|
|
public:
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_AVR_SELECTION_DAG_INFO_H
|