diff options
Diffstat (limited to 'llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp b/llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp new file mode 100644 index 00000000000..b1f4a71535c --- /dev/null +++ b/llvm/lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp @@ -0,0 +1,22 @@ +//===-- PowerPCSelectionDAGInfo.cpp - PowerPC 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 PowerPCSelectionDAGInfo class. +// +//===----------------------------------------------------------------------===// + +#define DEBUG_TYPE "powerpc-selectiondag-info" +#include "PowerPCSelectionDAGInfo.h" +using namespace llvm; + +PowerPCSelectionDAGInfo::PowerPCSelectionDAGInfo() { +} + +PowerPCSelectionDAGInfo::~PowerPCSelectionDAGInfo() { +} |