| Scott Michel | 564427e | 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 | 
|  | 6 | // Department at The Aerospace Corporation. | 
|  | 7 | // | 
|  | 8 | // See README.txt for details. | 
|  | 9 | // | 
|  | 10 | //===----------------------------------------------------------------------===// | 
|  | 11 | // | 
|  | 12 | // This file contains the declaration of the SPUTargetAsmInfo class. | 
|  | 13 | // | 
|  | 14 | //===----------------------------------------------------------------------===// | 
|  | 15 |  | 
|  | 16 | #ifndef PPCTARGETASMINFO_H | 
|  | 17 | #define PPCTARGETASMINFO_H | 
|  | 18 |  | 
|  | 19 | #include "llvm/Target/TargetAsmInfo.h" | 
|  | 20 |  | 
|  | 21 | namespace llvm { | 
|  | 22 |  | 
|  | 23 | // Forward declaration. | 
|  | 24 | class SPUTargetMachine; | 
|  | 25 |  | 
|  | 26 | struct SPUTargetAsmInfo : public TargetAsmInfo { | 
|  | 27 | SPUTargetAsmInfo(const SPUTargetMachine &TM); | 
|  | 28 | }; | 
|  | 29 |  | 
|  | 30 | } // namespace llvm | 
|  | 31 |  | 
|  | 32 | #endif |