1234353Sdim//===-- PPCMCAsmInfo.h - PPC asm properties --------------------*- C++ -*--===//
2224133Sdim//
3224133Sdim//                     The LLVM Compiler Infrastructure
4224133Sdim//
5224133Sdim// This file is distributed under the University of Illinois Open Source
6224133Sdim// License. See LICENSE.TXT for details.
7224133Sdim//
8224133Sdim//===----------------------------------------------------------------------===//
9224133Sdim//
10224133Sdim// This file contains the declaration of the MCAsmInfoDarwin class.
11224133Sdim//
12224133Sdim//===----------------------------------------------------------------------===//
13224133Sdim
14280031Sdim#ifndef LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCASMINFO_H
15280031Sdim#define LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCASMINFO_H
16224133Sdim
17224133Sdim#include "llvm/MC/MCAsmInfoDarwin.h"
18261991Sdim#include "llvm/MC/MCAsmInfoELF.h"
19224133Sdim
20224133Sdimnamespace llvm {
21265925Sdimclass Triple;
22224133Sdim
23296417Sdimclass PPCMCAsmInfoDarwin : public MCAsmInfoDarwin {
24296417Sdim  virtual void anchor();
25280031Sdim
26296417Sdimpublic:
27296417Sdim  explicit PPCMCAsmInfoDarwin(bool is64Bit, const Triple &);
28296417Sdim};
29224133Sdim
30296417Sdimclass PPCELFMCAsmInfo : public MCAsmInfoELF {
31296417Sdim  void anchor() override;
32224133Sdim
33296417Sdimpublic:
34296417Sdim  explicit PPCELFMCAsmInfo(bool is64Bit, const Triple &);
35296417Sdim};
36296417Sdim
37224133Sdim} // namespace llvm
38224133Sdim
39224133Sdim#endif
40