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 | 9becdddc49d794317b55ac505d76f5f68de26441 (patch) | |
tree | a4c9543a6190594cb95ca88260036c695e66519b /llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h | |
parent | ed9bee150b1c29af60671b5118be91e1ce6427cd (diff) | |
download | bcm5719-llvm-9becdddc49d794317b55ac505d76f5f68de26441.tar.gz bcm5719-llvm-9becdddc49d794317b55ac505d76f5f68de26441.zip |
Add skeleton target-specific SelectionDAGInfo files.
llvm-svn: 101564
Diffstat (limited to 'llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h')
-rw-r--r-- | llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h b/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h new file mode 100644 index 00000000000..fd9671681fc --- /dev/null +++ b/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h @@ -0,0 +1,29 @@ +//===-- XCoreSelectionDAGInfo.h - XCore 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 XCore subclass for TargetSelectionDAGInfo. +// +//===----------------------------------------------------------------------===// + +#ifndef XCORESELECTIONDAGINFO_H +#define XCORESELECTIONDAGINFO_H + +#include "llvm/Target/TargetSelectionDAGInfo.h" + +namespace llvm { + +class XCoreSelectionDAGInfo : public TargetSelectionDAGInfo { +public: + XCoreSelectionDAGInfo(); + ~XCoreSelectionDAGInfo(); +}; + +} + +#endif |