blob: b3c6bdaefd8b16217396e56992cb05f0f6d66780 [file] [log] [blame]
Chris Lattner081ce942007-12-29 20:36:04 +00001//===-- SPUTargetAsmInfo.h - Cell SPU asm properties -----------*- C++ -*--===//
Scott Michel5c93da42007-12-05 01:24:05 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-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 Michel5c93da42007-12-05 01:24:05 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the declaration of the SPUTargetAsmInfo class.
11//
12//===----------------------------------------------------------------------===//
13
Scott Michel1e5a4ba2008-11-07 04:36:25 +000014#ifndef SPUTARGETASMINFO_H
15#define SPUTARGETASMINFO_H
Scott Michel5c93da42007-12-05 01:24:05 +000016
17#include "llvm/Target/TargetAsmInfo.h"
18
19namespace llvm {
Chris Lattnerd88f9fd2009-08-12 07:22:17 +000020 class Target;
21 class StringRef;
22
Chris Lattnerccab6f72009-08-02 04:44:33 +000023 struct SPULinuxTargetAsmInfo : public TargetAsmInfo {
Chris Lattnerd88f9fd2009-08-12 07:22:17 +000024 explicit SPULinuxTargetAsmInfo(const Target &T, const StringRef &TT);
Scott Michel1e5a4ba2008-11-07 04:36:25 +000025 };
Scott Michel5c93da42007-12-05 01:24:05 +000026} // namespace llvm
27
Scott Michel1e5a4ba2008-11-07 04:36:25 +000028#endif /* SPUTARGETASMINFO_H */