2009-08-22 20:48:53 +00:00
|
|
|
//=====-- PPCMCAsmInfo.h - PPC asm properties -----------------*- C++ -*--====//
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 21:03:30 +00:00
|
|
|
// This file contains the declaration of the MCAsmInfoDarwin class.
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef PPCTARGETASMINFO_H
|
|
|
|
#define PPCTARGETASMINFO_H
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfoDarwin.h"
|
2006-09-07 22:05:02 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2009-08-22 21:03:30 +00:00
|
|
|
struct PPCMCAsmInfoDarwin : public MCAsmInfoDarwin {
|
|
|
|
explicit PPCMCAsmInfoDarwin(bool is64Bit);
|
2006-09-07 22:05:02 +00:00
|
|
|
};
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
struct PPCLinuxMCAsmInfo : public MCAsmInfo {
|
|
|
|
explicit PPCLinuxMCAsmInfo(bool is64Bit);
|
2006-12-21 20:26:09 +00:00
|
|
|
};
|
|
|
|
|
2006-09-07 22:05:02 +00:00
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|