101190482f89b57a0965e11c9e1507bccec3587b
[oota-llvm.git] / lib / Target / CellSPU / SPUTargetAsmInfo.h
1 //=====-- SPUTargetAsmInfo.h - Cell SPU asm properties --------*- C++ -*--====//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by a team from the Computer Systems Research
6 // Department at The Aerospace Corporation and is distributed under the
7 // University of Illinois Open Source License. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10 //
11 // This file contains the declaration of the SPUTargetAsmInfo class.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef PPCTARGETASMINFO_H
16 #define PPCTARGETASMINFO_H
17
18 #include "llvm/Target/TargetAsmInfo.h"
19
20 namespace llvm {
21
22   // Forward declaration.
23   class SPUTargetMachine;
24
25   struct SPUTargetAsmInfo : public TargetAsmInfo {
26     SPUTargetAsmInfo(const SPUTargetMachine &TM);
27   };
28
29 } // namespace llvm
30
31 #endif