Scott Michel | 5c93da4 | 2007-12-05 01:24:05 +0000 | [diff] [blame] | 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 |
Scott Michel | 43e7c5e | 2007-12-05 01:40:25 +0000 | [diff] [blame^] | 6 | // Department at The Aerospace Corporation and is distributed under the |
| 7 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
Scott Michel | 5c93da4 | 2007-12-05 01:24:05 +0000 | [diff] [blame] | 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 |