2006-09-07 22:05:02 +00:00
|
|
|
//=====-- ARMTargetAsmInfo.h - ARM asm properties -------------*- C++ -*--====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declaration of the ARMTargetAsmInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-02 05:23:52 +00:00
|
|
|
#ifndef LLVM_ARMTARGETASMINFO_H
|
|
|
|
#define LLVM_ARMTARGETASMINFO_H
|
2006-09-07 22:05:02 +00:00
|
|
|
|
2008-08-07 09:54:23 +00:00
|
|
|
#include "llvm/Target/DarwinTargetAsmInfo.h"
|
2006-09-07 22:05:02 +00:00
|
|
|
|
2008-09-25 07:38:08 +00:00
|
|
|
namespace llvm {
|
2008-09-24 22:22:27 +00:00
|
|
|
|
2009-08-11 22:14:59 +00:00
|
|
|
struct ARMDarwinTargetAsmInfo : public DarwinTargetAsmInfo {
|
2009-08-13 05:30:22 +00:00
|
|
|
explicit ARMDarwinTargetAsmInfo(const Triple &Triple);
|
2008-08-07 09:54:23 +00:00
|
|
|
};
|
|
|
|
|
2009-08-11 22:14:59 +00:00
|
|
|
struct ARMELFTargetAsmInfo : public TargetAsmInfo {
|
2009-08-02 05:23:52 +00:00
|
|
|
explicit ARMELFTargetAsmInfo();
|
2008-08-07 09:54:23 +00:00
|
|
|
};
|
2006-09-07 22:05:02 +00:00
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|