| Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- MSP430MCAsmInfo.h - MSP430 asm properties --------------*- C++ -*--===// | 
| Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 2 | // | 
|  | 3 | //                     The LLVM Compiler Infrastructure | 
|  | 4 | // | 
|  | 5 | // This file is distributed under the University of Illinois Open Source | 
|  | 6 | // License. See LICENSE.TXT for details. | 
|  | 7 | // | 
|  | 8 | //===----------------------------------------------------------------------===// | 
|  | 9 | // | 
| Chris Lattner | 7b26fce | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 10 | // This file contains the declaration of the MSP430MCAsmInfo class. | 
| Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 11 | // | 
|  | 12 | //===----------------------------------------------------------------------===// | 
|  | 13 |  | 
|  | 14 | #ifndef MSP430TARGETASMINFO_H | 
|  | 15 | #define MSP430TARGETASMINFO_H | 
|  | 16 |  | 
| Rafael Espindola | 43c4e24 | 2013-10-16 01:34:32 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCAsmInfoELF.h" | 
| Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 18 |  | 
|  | 19 | namespace llvm { | 
| Craig Topper | 1fcf5bc | 2012-03-27 07:54:11 +0000 | [diff] [blame] | 20 | class StringRef; | 
| Benjamin Kramer | 92d8998 | 2010-07-14 22:38:02 +0000 | [diff] [blame] | 21 |  | 
| Rafael Espindola | 43c4e24 | 2013-10-16 01:34:32 +0000 | [diff] [blame] | 22 | class MSP430MCAsmInfo : public MCAsmInfoELF { | 
| David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 23 | virtual void anchor(); | 
|  | 24 | public: | 
| Rafael Espindola | 140a837 | 2013-05-10 18:16:59 +0000 | [diff] [blame] | 25 | explicit MSP430MCAsmInfo(StringRef TT); | 
| Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 26 | }; | 
|  | 27 |  | 
|  | 28 | } // namespace llvm | 
|  | 29 |  | 
|  | 30 | #endif |