diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2015-07-09 02:10:08 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2015-07-09 02:10:08 +0000 |
commit | 157e5a6d10ffadff8b8789bf7701f5a04ae6e281 (patch) | |
tree | 220b7ac6090b5960217c02e81f860d3e0cdba73d /llvm/lib/Target/Sparc/SparcSelectionDAGInfo.cpp | |
parent | a749f2ad476050e74bb79722e3f5b85d67b29609 (diff) | |
download | bcm5719-llvm-157e5a6d10ffadff8b8789bf7701f5a04ae6e281.tar.gz bcm5719-llvm-157e5a6d10ffadff8b8789bf7701f5a04ae6e281.zip |
Remove getDataLayout() from TargetSelectionDAGInfo (had no users)
Summary:
Remove empty subclass in the process.
This change is part of a series of commits dedicated to have a single
DataLayout during compilation by using always the one owned by the
module.
Reviewers: echristo
Subscribers: jholewinski, llvm-commits, rafael, yaron.keren, ted
Differential Revision: http://reviews.llvm.org/D11045
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 241780
Diffstat (limited to 'llvm/lib/Target/Sparc/SparcSelectionDAGInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Sparc/SparcSelectionDAGInfo.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/llvm/lib/Target/Sparc/SparcSelectionDAGInfo.cpp b/llvm/lib/Target/Sparc/SparcSelectionDAGInfo.cpp deleted file mode 100644 index a308fc5e739..00000000000 --- a/llvm/lib/Target/Sparc/SparcSelectionDAGInfo.cpp +++ /dev/null @@ -1,24 +0,0 @@ -//===-- SparcSelectionDAGInfo.cpp - Sparc 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 SparcSelectionDAGInfo class. -// -//===----------------------------------------------------------------------===// - -#include "SparcSelectionDAGInfo.h" -using namespace llvm; - -#define DEBUG_TYPE "sparc-selectiondag-info" - -SparcSelectionDAGInfo::SparcSelectionDAGInfo(const DataLayout &DL) - : TargetSelectionDAGInfo(&DL) { -} - -SparcSelectionDAGInfo::~SparcSelectionDAGInfo() { -} |