[llvm] r257152 - [AVR] Added AVRSelectionDAGInfo header file

Dylan McKay via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 7 22:32:27 PST 2016


Author: dylanmckay
Date: Fri Jan  8 00:32:27 2016
New Revision: 257152

URL: http://llvm.org/viewvc/llvm-project?rev=257152&view=rev
Log:
[AVR] Added AVRSelectionDAGInfo header file

Added:
    llvm/trunk/lib/Target/AVR/AVRSelectionDAGInfo.h

Added: llvm/trunk/lib/Target/AVR/AVRSelectionDAGInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AVR/AVRSelectionDAGInfo.h?rev=257152&view=auto
==============================================================================
--- llvm/trunk/lib/Target/AVR/AVRSelectionDAGInfo.h (added)
+++ llvm/trunk/lib/Target/AVR/AVRSelectionDAGInfo.h Fri Jan  8 00:32:27 2016
@@ -0,0 +1,29 @@
+//===-- 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.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file defines the AVR subclass for TargetSelectionDAGInfo.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_AVR_SELECTION_DAG_INFO_H
+#define LLVM_AVR_SELECTION_DAG_INFO_H
+
+#include "llvm/Target/TargetSelectionDAGInfo.h"
+
+namespace llvm {
+/**
+ * Holds information about the AVR instruction selection DAG.
+ */
+class AVRSelectionDAGInfo : public TargetSelectionDAGInfo {
+public:
+};
+
+} // end namespace llvm
+
+#endif // LLVM_AVR_SELECTION_DAG_INFO_H




More information about the llvm-commits mailing list