2012-02-18 20:03:15 +08:00
|
|
|
//===-- SparcMCAsmInfo.h - Sparc 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 SparcMCAsmInfo class.
|
2006-09-08 06:05:02 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SPARCTARGETASMINFO_H
|
|
|
|
#define SPARCTARGETASMINFO_H
|
|
|
|
|
2013-10-16 09:34:32 +08:00
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
2006-09-08 06:05:02 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2012-03-27 15:54:11 +08:00
|
|
|
class StringRef;
|
2010-07-15 06:38:02 +08:00
|
|
|
|
2013-10-16 09:34:32 +08:00
|
|
|
class SparcELFMCAsmInfo : public MCAsmInfoELF {
|
2011-12-20 10:50:00 +08:00
|
|
|
virtual void anchor();
|
|
|
|
public:
|
2013-05-11 02:16:59 +08:00
|
|
|
explicit SparcELFMCAsmInfo(StringRef TT);
|
2008-08-07 17:51:25 +08:00
|
|
|
};
|
2006-09-08 06:05:02 +08:00
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|