PPCMCAsmInfo.h revision 224145
1147997Srwatson//=====-- PPCMCAsmInfo.h - PPC asm properties -----------------*- C++ -*--====//
2147997Srwatson//
3147997Srwatson//                     The LLVM Compiler Infrastructure
4147997Srwatson//
5147997Srwatson// This file is distributed under the University of Illinois Open Source
6147997Srwatson// License. See LICENSE.TXT for details.
7147997Srwatson//
8147997Srwatson//===----------------------------------------------------------------------===//
9147997Srwatson//
10147997Srwatson// This file contains the declaration of the MCAsmInfoDarwin class.
11147997Srwatson//
12147997Srwatson//===----------------------------------------------------------------------===//
13147997Srwatson
14147997Srwatson#ifndef PPCTARGETASMINFO_H
15147997Srwatson#define PPCTARGETASMINFO_H
16147997Srwatson
17147997Srwatson#include "llvm/MC/MCAsmInfoDarwin.h"
18147997Srwatson
19147997Srwatsonnamespace llvm {
20147997Srwatson
21147997Srwatson  struct PPCMCAsmInfoDarwin : public MCAsmInfoDarwin {
22147997Srwatson    explicit PPCMCAsmInfoDarwin(bool is64Bit);
23147997Srwatson  };
24147997Srwatson
25147997Srwatson  struct PPCLinuxMCAsmInfo : public MCAsmInfo {
26147997Srwatson    explicit PPCLinuxMCAsmInfo(bool is64Bit);
27147997Srwatson  };
28147997Srwatson
29147997Srwatson} // namespace llvm
30147997Srwatson
31147997Srwatson#endif
32147997Srwatson