2009-08-22 20:48:53 +00:00
|
|
|
//=====-- SparcMCAsmInfo.h - Sparc asm properties -------------*- C++ -*--====//
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 20:48:53 +00:00
|
|
|
// This file contains the declaration of the SparcMCAsmInfo class.
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SPARCTARGETASMINFO_H
|
|
|
|
#define SPARCTARGETASMINFO_H
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2006-09-07 22:05:02 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-12 07:22:17 +00:00
|
|
|
class Target;
|
|
|
|
class StringRef;
|
2009-08-22 20:48:53 +00:00
|
|
|
struct SparcELFMCAsmInfo : public MCAsmInfo {
|
|
|
|
explicit SparcELFMCAsmInfo(const Target &T, const StringRef &TT);
|
2008-08-07 09:51:25 +00:00
|
|
|
};
|
2006-09-07 22:05:02 +00:00
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|