blob: 995955a0c897f823736c85d48d6194a23f92eab3 [file] [log] [blame]
Dan Gohman8b8dc1c2010-04-16 23:04:22 +00001//===-- PIC16SelectionDAGInfo.cpp - PIC16 SelectionDAG Info ---------------===//
2//
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//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the PIC16SelectionDAGInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "pic16-selectiondag-info"
Dan Gohmancfbb3232010-05-11 17:31:57 +000015#include "PIC16TargetMachine.h"
Dan Gohman8b8dc1c2010-04-16 23:04:22 +000016using namespace llvm;
17
Dan Gohmancfbb3232010-05-11 17:31:57 +000018PIC16SelectionDAGInfo::PIC16SelectionDAGInfo(const PIC16TargetMachine &TM)
19 : TargetSelectionDAGInfo(TM) {
Dan Gohman8b8dc1c2010-04-16 23:04:22 +000020}
21
22PIC16SelectionDAGInfo::~PIC16SelectionDAGInfo() {
23}