Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame^] | 1 | //=====-- MipsMCAsmInfo.h - Mips asm properties ---------------*- C++ -*--====// |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +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. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +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 MipsMCAsmInfo class. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef MIPSTARGETASMINFO_H |
| 15 | #define MIPSTARGETASMINFO_H |
| 16 | |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame^] | 17 | #include "llvm/MC/MCAsmInfo.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +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 | class MipsMCAsmInfo : public MCAsmInfo { |
Chris Lattner | 92319e2 | 2009-08-11 20:32:51 +0000 | [diff] [blame] | 24 | public: |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame^] | 25 | explicit MipsMCAsmInfo(const Target &T, const StringRef &TT); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 26 | }; |
| 27 | |
| 28 | } // namespace llvm |
| 29 | |
| 30 | #endif |