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 | 50f1723 | 2015-09-15 16:17:27 +0000 | [diff] [blame] | 20 | class Triple; |
Benjamin Kramer | 92d8998 | 2010-07-14 22:38:02 +0000 | [diff] [blame] | 21 | |
Daniel Sanders | c8cd6e9 | 2015-09-15 12:27:06 +0000 | [diff] [blame] | 22 | class MSP430MCAsmInfo : public MCAsmInfoELF { |
| 23 | void anchor() override; |
| 24 | |
| 25 | public: |
Daniel Sanders | 50f1723 | 2015-09-15 16:17:27 +0000 | [diff] [blame] | 26 | explicit MSP430MCAsmInfo(const Triple &TT); |
Daniel Sanders | c8cd6e9 | 2015-09-15 12:27:06 +0000 | [diff] [blame] | 27 | }; |
Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 28 | |
| 29 | } // namespace llvm |
| 30 | |
| 31 | #endif |