blob: 2c1378d5670d7dfcd3e94134ca07e67f42fc0980 [file] [log] [blame]
Chandler Carruthca0a53a2010-04-17 08:50:29 +00001//===-- PPCSelectionDAGInfo.h - PowerPC SelectionDAG Info -------*- C++ -*-===//
Dan Gohman9becddd2010-04-16 23:04:22 +00002//
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 defines the PowerPC subclass for TargetSelectionDAGInfo.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_TARGET_POWERPC_PPCSELECTIONDAGINFO_H
15#define LLVM_LIB_TARGET_POWERPC_PPCSELECTIONDAGINFO_H
Dan Gohman9becddd2010-04-16 23:04:22 +000016
17#include "llvm/Target/TargetSelectionDAGInfo.h"
18
19namespace llvm {
20
Dan Gohmanbb919df2010-05-11 17:31:57 +000021class PPCTargetMachine;
22
Chandler Carruthca0a53a2010-04-17 08:50:29 +000023class PPCSelectionDAGInfo : public TargetSelectionDAGInfo {
Dan Gohman9becddd2010-04-16 23:04:22 +000024public:
Eric Christophere47dcd42014-06-12 22:56:48 +000025 explicit PPCSelectionDAGInfo(const DataLayout *DL);
Chandler Carruthca0a53a2010-04-17 08:50:29 +000026 ~PPCSelectionDAGInfo();
Dan Gohman9becddd2010-04-16 23:04:22 +000027};
28
29}
30
31#endif