2006-09-08 06:05:02 +08:00
|
|
|
//=====-- PPCTargetAsmInfo.h - PPC asm properties -------------*- C++ -*--====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-08 06:05:02 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declaration of the DarwinTargetAsmInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef PPCTARGETASMINFO_H
|
|
|
|
#define PPCTARGETASMINFO_H
|
|
|
|
|
2009-08-14 01:03:38 +08:00
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
2008-08-09 02:23:25 +08:00
|
|
|
#include "llvm/Target/DarwinTargetAsmInfo.h"
|
2006-09-08 06:05:02 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2009-08-12 06:06:07 +08:00
|
|
|
struct PPCDarwinTargetAsmInfo : public DarwinTargetAsmInfo {
|
2009-08-14 01:03:38 +08:00
|
|
|
explicit PPCDarwinTargetAsmInfo(bool is64Bit);
|
2006-09-08 06:05:02 +08:00
|
|
|
};
|
|
|
|
|
2009-08-12 06:06:07 +08:00
|
|
|
struct PPCLinuxTargetAsmInfo : public TargetAsmInfo {
|
2009-08-14 01:03:38 +08:00
|
|
|
explicit PPCLinuxTargetAsmInfo(bool is64Bit);
|
2006-12-22 04:26:09 +08:00
|
|
|
};
|
|
|
|
|
2006-09-08 06:05:02 +08:00
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|