2010-04-17 01:04:22 +02:00
|
|
|
//===-- MBlazeSelectionDAGInfo.cpp - MBlaze SelectionDAG Info -------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the MBlazeSelectionDAGInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "mblaze-selectiondag-info"
|
2010-05-11 19:31:57 +02:00
|
|
|
#include "MBlazeTargetMachine.h"
|
2010-04-17 01:04:22 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-05-11 19:31:57 +02:00
|
|
|
MBlazeSelectionDAGInfo::MBlazeSelectionDAGInfo(const MBlazeTargetMachine &TM)
|
|
|
|
: TargetSelectionDAGInfo(TM) {
|
2010-04-17 01:04:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MBlazeSelectionDAGInfo::~MBlazeSelectionDAGInfo() {
|
|
|
|
}
|