Path: blob/main/contrib/llvm-project/llvm/lib/Target/PowerPC/GISel/PPCLegalizerInfo.h
35294 views
//===- PPCLegalizerInfo.h ----------------------------------------*- C++ -*-==//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7/// \file8/// This file declares the targeting of the Machinelegalizer class for PowerPC9//===----------------------------------------------------------------------===//1011#ifndef LLVM_LIB_TARGET_POWERPC_GISEL_PPCMACHINELEGALIZER_H12#define LLVM_LIB_TARGET_POWERPC_GISEL_PPCMACHINELEGALIZER_H1314#include "llvm/CodeGen/GlobalISel/LegalizerInfo.h"1516namespace llvm {1718class PPCSubtarget;1920/// This class provides the information for the PowerPC target legalizer for21/// GlobalISel.22class PPCLegalizerInfo : public LegalizerInfo {23public:24PPCLegalizerInfo(const PPCSubtarget &ST);25};26} // namespace llvm27#endif282930