| 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 |  | 
| Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430MCASMINFO_H | 
|  | 15 | #define LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430MCASMINFO_H | 
| Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 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 { | 
| Daniel Sanders | 7813ae8 | 2015-06-04 13:12:25 +0000 | [diff] [blame] | 20 | class Triple; | 
| 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 { | 
| Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 23 | void anchor() override; | 
| David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 24 | public: | 
| Daniel Sanders | 7813ae8 | 2015-06-04 13:12:25 +0000 | [diff] [blame] | 25 | explicit MSP430MCAsmInfo(const Triple &TT); | 
| Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 26 | }; | 
|  | 27 |  | 
|  | 28 | } // namespace llvm | 
|  | 29 |  | 
|  | 30 | #endif |