blob: 616e1c561516286b9ce4afa9c2531ac3672f6dda [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +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
Benjamin Kramer38e59892010-07-14 22:38:02 +000017#include "llvm/ADT/StringRef.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000018#include "llvm/MC/MCAsmInfo.h"
Jim Laskey8e8de8f2006-09-07 22:05:02 +000019
20namespace llvm {
Chris Lattnera7ac47c2009-08-12 07:22:17 +000021 class Target;
Benjamin Kramer38e59892010-07-14 22:38:02 +000022
David Blaikie2d24e2a2011-12-20 02:50:00 +000023 class SparcELFMCAsmInfo : public MCAsmInfo {
24 virtual void anchor();
25 public:
Benjamin Kramer38e59892010-07-14 22:38:02 +000026 explicit SparcELFMCAsmInfo(const Target &T, StringRef TT);
Jim Laskey8e8de8f2006-09-07 22:05:02 +000027 };
28
Jim Laskey8e8de8f2006-09-07 22:05:02 +000029} // namespace llvm
30
31#endif