blob: 101190482f89b57a0965e11c9e1507bccec3587b [file] [log] [blame]
Scott Michel5c93da42007-12-05 01:24:05 +00001//=====-- 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
Scott Michel43e7c5e2007-12-05 01:40:25 +00006// Department at The Aerospace Corporation and is distributed under the
7// University of Illinois Open Source License. See LICENSE.TXT for details.
Scott Michel5c93da42007-12-05 01:24:05 +00008//
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
20namespace 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