blob: 12d6ef4a6f187fc58a0fb280c1dc04fc998a7df7 [file] [log] [blame]
Chris Lattneraf76e592009-08-22 20:48:53 +00001//=====-- SparcMCAsmInfo.h - Sparc asm properties -------------*- C++ -*--====//
Jim Laskey8e8de8f2006-09-07 22:05:02 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jim Laskey8e8de8f2006-09-07 22:05:02 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattneraf76e592009-08-22 20:48:53 +000010// This file contains the declaration of the SparcMCAsmInfo class.
Jim Laskey8e8de8f2006-09-07 22:05:02 +000011//
12//===----------------------------------------------------------------------===//
13
14#ifndef SPARCTARGETASMINFO_H
15#define SPARCTARGETASMINFO_H
16
Chris Lattneraf76e592009-08-22 20:48:53 +000017#include "llvm/MC/MCAsmInfo.h"
Jim Laskey8e8de8f2006-09-07 22:05:02 +000018
19namespace llvm {
Chris Lattnera7ac47c2009-08-12 07:22:17 +000020 class Target;
21 class StringRef;
Chris Lattneraf76e592009-08-22 20:48:53 +000022 struct SparcELFMCAsmInfo : public MCAsmInfo {
23 explicit SparcELFMCAsmInfo(const Target &T, const StringRef &TT);
Jim Laskey8e8de8f2006-09-07 22:05:02 +000024 };
25
Jim Laskey8e8de8f2006-09-07 22:05:02 +000026} // namespace llvm
27
28#endif