mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
8c0e89925d
SelectionDAG-specific parts of TargetLowering. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101537 91177308-0d34-0410-b5e6-96231b3b80d8
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
//==-- llvm/Target/TargetSelectionDAGInfo.h - SelectionDAG Info --*- C++ -*-==//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file declares the TargetSelectionDAGInfo class, which targets can
|
|
// subclass to parameterize the SelectionDAG lowering and instruction
|
|
// selection process.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TARGET_TARGETSELECTIONDAGINFO_H
|
|
#define LLVM_TARGET_TARGETSELECTIONDAGINFO_H
|
|
|
|
namespace llvm {
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
/// TargetSelectionDAGLowering - Targets can subclass this to parameterize the
|
|
/// SelectionDAG lowering and instruction selection process.
|
|
///
|
|
class TargetSelectionDAGInfo {
|
|
TargetSelectionDAGInfo(const TargetSelectionDAGInfo &); // DO NOT IMPLEMENT
|
|
void operator=(const TargetSelectionDAGInfo &); // DO NOT IMPLEMENT
|
|
|
|
public:
|
|
TargetSelectionDAGInfo();
|
|
virtual ~TargetSelectionDAGInfo();
|
|
};
|
|
|
|
} // end llvm namespace
|
|
|
|
#endif
|