blob: b3c6bdaefd8b16217396e56992cb05f0f6d66780 [file] [log] [blame]
Chris Lattner4ee451d2007-12-29 20:36:04 +00001//===-- SPUTargetAsmInfo.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//
10// This file contains the declaration of the SPUTargetAsmInfo class.
11//
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
17#include "llvm/Target/TargetAsmInfo.h"
18
19namespace llvm {
Chris Lattnera7ac47c2009-08-12 07:22:17 +000020 class Target;
21 class StringRef;
22
Chris Lattner09e820b2009-08-02 04:44:33 +000023 struct SPULinuxTargetAsmInfo : public TargetAsmInfo {
Chris Lattnera7ac47c2009-08-12 07:22:17 +000024 explicit SPULinuxTargetAsmInfo(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 */