diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-16 23:04:22 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-16 23:04:22 +0000 |
commit | 53c5e42ab9c1a2cce7ad19bb0b4dffe33c9473e6 (patch) | |
tree | 2e1cb690d540c9ea8ad5eeb270e59dce47c056e1 /lib/Target/MBlaze/MBlazeSelectionDAGInfo.h | |
parent | af5b0e851e42d7de1247c4084ba75a76c4497ca6 (diff) | |
download | external_llvm-53c5e42ab9c1a2cce7ad19bb0b4dffe33c9473e6.zip external_llvm-53c5e42ab9c1a2cce7ad19bb0b4dffe33c9473e6.tar.gz external_llvm-53c5e42ab9c1a2cce7ad19bb0b4dffe33c9473e6.tar.bz2 |
Add skeleton target-specific SelectionDAGInfo files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101564 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MBlaze/MBlazeSelectionDAGInfo.h')
-rw-r--r-- | lib/Target/MBlaze/MBlazeSelectionDAGInfo.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/Target/MBlaze/MBlazeSelectionDAGInfo.h b/lib/Target/MBlaze/MBlazeSelectionDAGInfo.h new file mode 100644 index 0000000..11e6879 --- /dev/null +++ b/lib/Target/MBlaze/MBlazeSelectionDAGInfo.h @@ -0,0 +1,29 @@ +//===-- MBlazeSelectionDAGInfo.h - MBlaze 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 MBlaze subclass for TargetSelectionDAGInfo. +// +//===----------------------------------------------------------------------===// + +#ifndef MBLAZESELECTIONDAGINFO_H +#define MBLAZESELECTIONDAGINFO_H + +#include "llvm/Target/TargetSelectionDAGInfo.h" + +namespace llvm { + +class MBlazeSelectionDAGInfo : public TargetSelectionDAGInfo { +public: + MBlazeSelectionDAGInfo(); + ~MBlazeSelectionDAGInfo(); +}; + +} + +#endif |