#119969 adds a couple of new methods to this class, which will need to be overridden by these targets. Part of #119709. Pull Request: https://github.com/llvm/llvm-project/pull/119968
24 lines
731 B
C++
24 lines
731 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_POWERPC_PPCSELECTIONDAGINFO_H
|
|
#define LLVM_LIB_TARGET_POWERPC_PPCSELECTIONDAGINFO_H
|
|
|
|
#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
|
|
|
|
namespace llvm {
|
|
|
|
class PPCSelectionDAGInfo : public SelectionDAGTargetInfo {
|
|
public:
|
|
~PPCSelectionDAGInfo() override;
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
#endif // LLVM_LIB_TARGET_POWERPC_PPCSELECTIONDAGINFO_H
|