blob: edd8f670707fc20ea2b3f571c60fdc480b0cf0e9 [file] [log] [blame]
Jia Liu9f610112012-02-17 08:55:11 +00001//===-- MipsSelectionDAGInfo.cpp - Mips SelectionDAG Info -----------------===//
Dan Gohman9becddd2010-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 Hatanakae2489122011-04-15 21:51:11 +00008//===----------------------------------------------------------------------===//
Dan Gohman9becddd2010-04-16 23:04:22 +00009//
10// This file implements the MipsSelectionDAGInfo class.
11//
Akira Hatanakae2489122011-04-15 21:51:11 +000012//===----------------------------------------------------------------------===//
Dan Gohman9becddd2010-04-16 23:04:22 +000013
Dan Gohmanbb919df2010-05-11 17:31:57 +000014#include "MipsTargetMachine.h"
Dan Gohman9becddd2010-04-16 23:04:22 +000015using namespace llvm;
16
Chandler Carruth84e68b22014-04-22 02:41:26 +000017#define DEBUG_TYPE "mips-selectiondag-info"
18
Eric Christopher5432e752014-06-27 04:38:30 +000019MipsSelectionDAGInfo::MipsSelectionDAGInfo(const DataLayout &DL)
20 : TargetSelectionDAGInfo(&DL) {}
Dan Gohman9becddd2010-04-16 23:04:22 +000021
22MipsSelectionDAGInfo::~MipsSelectionDAGInfo() {
23}