summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMMCAsmInfo.h
blob: 90f7822ea580ec711eb939362d263c024a5c7d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//=====-- ARMMCAsmInfo.h - ARM asm properties -------------*- C++ -*--====//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains the declaration of the ARMMCAsmInfo class.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_ARMTARGETASMINFO_H
#define LLVM_ARMTARGETASMINFO_H

#include "llvm/MC/MCAsmInfoDarwin.h"

namespace llvm {

  struct ARMMCAsmInfoDarwin : public MCAsmInfoDarwin {
    explicit ARMMCAsmInfoDarwin();
  };

  struct ARMELFMCAsmInfo : public MCAsmInfo {
    explicit ARMELFMCAsmInfo();
  };

} // namespace llvm

#endif