blob: 7f850d347f56cff8e7792d85f0284fb83678662b [file] [log] [blame]
Chris Lattneraf76e592009-08-22 20:48:53 +00001//===-- SPUMCAsmInfo.h - Cell SPU asm properties ---------------*- C++ -*--===//
Scott Michel564427e2007-12-05 01:24:05 +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.
Scott Michel564427e2007-12-05 01:24:05 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattneraf76e592009-08-22 20:48:53 +000010// This file contains the declaration of the SPUMCAsmInfo class.
Scott Michel564427e2007-12-05 01:24:05 +000011//
12//===----------------------------------------------------------------------===//
13
Scott Micheld03eeaf2008-11-07 04:36:25 +000014#ifndef SPUTARGETASMINFO_H
15#define SPUTARGETASMINFO_H
Scott Michel564427e2007-12-05 01:24:05 +000016
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"
Scott Michel564427e2007-12-05 01:24:05 +000019
20namespace llvm {
Chris Lattnera7ac47c2009-08-12 07:22:17 +000021 class Target;
Chris Lattnera7ac47c2009-08-12 07:22:17 +000022
Chris Lattneraf76e592009-08-22 20:48:53 +000023 struct SPULinuxMCAsmInfo : public MCAsmInfo {
Benjamin Kramer38e59892010-07-14 22:38:02 +000024 explicit SPULinuxMCAsmInfo(const Target &T, StringRef TT);
Scott Micheld03eeaf2008-11-07 04:36:25 +000025 };
Scott Michel564427e2007-12-05 01:24:05 +000026} // namespace llvm
27
Scott Micheld03eeaf2008-11-07 04:36:25 +000028#endif /* SPUTARGETASMINFO_H */