2011-04-15 21:51:11 +00:00
|
|
|
//===-- MipsSelectionDAGInfo.h - Mips SelectionDAG Info ---------*- C++ -*-===//
|
2010-04-16 23:04:22 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-04-16 23:04:22 +00:00
|
|
|
//
|
|
|
|
// This file defines the Mips subclass for TargetSelectionDAGInfo.
|
|
|
|
//
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-04-16 23:04:22 +00:00
|
|
|
|
|
|
|
#ifndef MIPSSELECTIONDAGINFO_H
|
|
|
|
#define MIPSSELECTIONDAGINFO_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetSelectionDAGInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2010-05-11 17:31:57 +00:00
|
|
|
class MipsTargetMachine;
|
|
|
|
|
2010-04-16 23:04:22 +00:00
|
|
|
class MipsSelectionDAGInfo : public TargetSelectionDAGInfo {
|
|
|
|
public:
|
2010-05-11 17:31:57 +00:00
|
|
|
explicit MipsSelectionDAGInfo(const MipsTargetMachine &TM);
|
2010-04-16 23:04:22 +00:00
|
|
|
~MipsSelectionDAGInfo();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|