2009-08-23 04:48:53 +08:00
|
|
|
//=====-- ARMMCAsmInfo.h - ARM asm properties -------------*- C++ -*--====//
|
2006-09-08 06:05:02 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-08 06:05:02 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-23 04:48:53 +08:00
|
|
|
// This file contains the declaration of the ARMMCAsmInfo class.
|
2006-09-08 06:05:02 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-02 13:23:52 +08:00
|
|
|
#ifndef LLVM_ARMTARGETASMINFO_H
|
|
|
|
#define LLVM_ARMTARGETASMINFO_H
|
2006-09-08 06:05:02 +08:00
|
|
|
|
2009-08-23 04:48:53 +08:00
|
|
|
#include "llvm/MC/MCAsmInfoDarwin.h"
|
2006-09-08 06:05:02 +08:00
|
|
|
|
2008-09-25 15:38:08 +08:00
|
|
|
namespace llvm {
|
2008-09-25 06:22:27 +08:00
|
|
|
|
2009-08-23 05:03:30 +08:00
|
|
|
struct ARMMCAsmInfoDarwin : public MCAsmInfoDarwin {
|
|
|
|
explicit ARMMCAsmInfoDarwin();
|
2008-08-07 17:54:23 +08:00
|
|
|
};
|
|
|
|
|
2009-08-23 04:48:53 +08:00
|
|
|
struct ARMELFMCAsmInfo : public MCAsmInfo {
|
|
|
|
explicit ARMELFMCAsmInfo();
|
2008-08-07 17:54:23 +08:00
|
|
|
};
|
2006-09-08 06:05:02 +08:00
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|