mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-06 12:04:48 +00:00
c89ecc5c2f
template in PPC backend for TAI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78727 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
1012 B
C++
35 lines
1012 B
C++
//=====-- PPCTargetAsmInfo.h - PPC asm properties -------------*- C++ -*--====//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains the declaration of the DarwinTargetAsmInfo class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef PPCTARGETASMINFO_H
|
|
#define PPCTARGETASMINFO_H
|
|
|
|
#include "PPCTargetMachine.h"
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
|
#include "llvm/Target/DarwinTargetAsmInfo.h"
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
namespace llvm {
|
|
|
|
struct PPCDarwinTargetAsmInfo : public DarwinTargetAsmInfo {
|
|
explicit PPCDarwinTargetAsmInfo(const PPCTargetMachine &TM);
|
|
};
|
|
|
|
struct PPCLinuxTargetAsmInfo : public TargetAsmInfo {
|
|
explicit PPCLinuxTargetAsmInfo(const PPCTargetMachine &TM);
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
#endif
|