Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 1 | //===-- SPUMCAsmInfo.h - Cell SPU asm properties ---------------*- C++ -*--===// |
Scott Michel | 564427e | 2007-12-05 01:24:05 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Scott Michel | 564427e | 2007-12-05 01:24:05 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 10 | // This file contains the declaration of the SPUMCAsmInfo class. |
Scott Michel | 564427e | 2007-12-05 01:24:05 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Scott Michel | d03eeaf | 2008-11-07 04:36:25 +0000 | [diff] [blame] | 14 | #ifndef SPUTARGETASMINFO_H |
| 15 | #define SPUTARGETASMINFO_H |
Scott Michel | 564427e | 2007-12-05 01:24:05 +0000 | [diff] [blame] | 16 | |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCAsmInfo.h" |
Scott Michel | 564427e | 2007-12-05 01:24:05 +0000 | [diff] [blame] | 18 | |
| 19 | namespace llvm { |
Chris Lattner | a7ac47c | 2009-08-12 07:22:17 +0000 | [diff] [blame] | 20 | class Target; |
| 21 | class StringRef; |
| 22 | |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 23 | struct SPULinuxMCAsmInfo : public MCAsmInfo { |
| 24 | explicit SPULinuxMCAsmInfo(const Target &T, const StringRef &TT); |
Scott Michel | d03eeaf | 2008-11-07 04:36:25 +0000 | [diff] [blame] | 25 | }; |
Scott Michel | 564427e | 2007-12-05 01:24:05 +0000 | [diff] [blame] | 26 | } // namespace llvm |
| 27 | |
Scott Michel | d03eeaf | 2008-11-07 04:36:25 +0000 | [diff] [blame] | 28 | #endif /* SPUTARGETASMINFO_H */ |