blob: e4d70fcec591e6d4a5669bdb13936a11f8707fb2 [file] [log] [blame]
Akira Hatanaka4552c9a2011-04-15 21:51:11 +00001//===-- MipsSelectionDAGInfo.cpp - Mips SelectionDAG Info -----------------===//
Dan Gohman53c5e422010-04-16 23:04:22 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
Akira Hatanaka4552c9a2011-04-15 21:51:11 +00008//===----------------------------------------------------------------------===//
Dan Gohman53c5e422010-04-16 23:04:22 +00009//
10// This file implements the MipsSelectionDAGInfo class.
11//
Akira Hatanaka4552c9a2011-04-15 21:51:11 +000012//===----------------------------------------------------------------------===//
Dan Gohman53c5e422010-04-16 23:04:22 +000013
14#define DEBUG_TYPE "mips-selectiondag-info"
Dan Gohmanff7a5622010-05-11 17:31:57 +000015#include "MipsTargetMachine.h"
Dan Gohman53c5e422010-04-16 23:04:22 +000016using namespace llvm;
17
Dan Gohmanff7a5622010-05-11 17:31:57 +000018MipsSelectionDAGInfo::MipsSelectionDAGInfo(const MipsTargetMachine &TM)
19 : TargetSelectionDAGInfo(TM) {
Dan Gohman53c5e422010-04-16 23:04:22 +000020}
21
22MipsSelectionDAGInfo::~MipsSelectionDAGInfo() {
23}