1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/lib/Target/AArch64/AArch64MachineLegalizer.h
George Burgess IV 36f8c441dc Fix include case. NFC.
llvm-svn: 276465
2016-07-22 20:15:19 +00:00

31 lines
973 B
C++

//===- AArch64Machinelegalizer --------------------------------*- C++ -*-==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
/// \file
/// This file declares the targeting of the Machinelegalizer class for
/// AArch64.
/// \todo This should be generated by TableGen.
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIB_TARGET_AARCH64_AARCH64MACHINELEGALIZER_H
#define LLVM_LIB_TARGET_AARCH64_AARCH64MACHINELEGALIZER_H
#include "llvm/CodeGen/GlobalISel/MachineLegalizer.h"
namespace llvm {
class LLVMContext;
/// This class provides the information for the target register banks.
class AArch64MachineLegalizer : public MachineLegalizer {
public:
AArch64MachineLegalizer();
};
} // End llvm namespace.
#endif