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