PPCMCAsmInfo.h revision 234353
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
14224133Sdim#ifndef PPCTARGETASMINFO_H
15224133Sdim#define PPCTARGETASMINFO_H
16224133Sdim
17224133Sdim#include "llvm/MC/MCAsmInfoDarwin.h"
18224133Sdim
19224133Sdimnamespace llvm {
20224133Sdim
21234353Sdim  class PPCMCAsmInfoDarwin : public MCAsmInfoDarwin {
22234353Sdim    virtual void anchor();
23234353Sdim  public:
24224133Sdim    explicit PPCMCAsmInfoDarwin(bool is64Bit);
25224133Sdim  };
26224133Sdim
27234353Sdim  class PPCLinuxMCAsmInfo : public MCAsmInfo {
28234353Sdim    virtual void anchor();
29234353Sdim  public:
30224133Sdim    explicit PPCLinuxMCAsmInfo(bool is64Bit);
31224133Sdim  };
32224133Sdim
33224133Sdim} // namespace llvm
34224133Sdim
35224133Sdim#endif
36