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