mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-02 16:21:36 +00:00

It's a SelectionDAG thing, not a Target thing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258939 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
607 B
C++
18 lines
607 B
C++
//===-- SelectionDAGTargetInfo.cpp - SelectionDAG Info --------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This implements the SelectionDAGTargetInfo class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
|
|
using namespace llvm;
|
|
|
|
SelectionDAGTargetInfo::~SelectionDAGTargetInfo() {}
|