2010-04-17 07:04:22 +08:00
|
|
|
//===-- SparcSelectionDAGInfo.h - Sparc 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 Sparc subclass for TargetSelectionDAGInfo.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_SPARC_SPARCSELECTIONDAGINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_SPARC_SPARCSELECTIONDAGINFO_H
|
2010-04-17 07:04:22 +08:00
|
|
|
|
|
|
|
#include "llvm/Target/TargetSelectionDAGInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2010-05-12 01:31:57 +08:00
|
|
|
class SparcTargetMachine;
|
|
|
|
|
2010-04-17 07:04:22 +08:00
|
|
|
class SparcSelectionDAGInfo : public TargetSelectionDAGInfo {
|
|
|
|
public:
|
2014-06-27 06:33:52 +08:00
|
|
|
explicit SparcSelectionDAGInfo(const DataLayout &DL);
|
2015-04-11 10:11:45 +08:00
|
|
|
~SparcSelectionDAGInfo() override;
|
2010-04-17 07:04:22 +08:00
|
|
|
};
|
|
|
|
|
2015-06-19 23:57:42 +08:00
|
|
|
} // namespace llvm
|
2010-04-17 07:04:22 +08:00
|
|
|
|
|
|
|
#endif
|