blob: 8d75ea84116a506240e1dd6c2c3d3405c141e8e8 [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
Chris Lattneraf76e592009-08-22 20:48:53 +000017#include "llvm/MC/MCAsmInfo.h"
Scott Michel564427e2007-12-05 01:24:05 +000018
19namespace llvm {
Chris Lattnera7ac47c2009-08-12 07:22:17 +000020 class Target;
21 class StringRef;
22
Chris Lattneraf76e592009-08-22 20:48:53 +000023 struct SPULinuxMCAsmInfo : public MCAsmInfo {
24 explicit SPULinuxMCAsmInfo(const Target &T, const 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 */