Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 1 | //====-- SystemZTargetAsmInfo.h - SystemZ asm properties -------*- C++ -*--===// |
| 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 | // |
| 10 | // This file contains the declaration of the SystemZTargetAsmInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef SystemZTARGETASMINFO_H |
| 15 | #define SystemZTARGETASMINFO_H |
| 16 | |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 17 | #include "llvm/Target/ELFTargetAsmInfo.h" |
| 18 | |
| 19 | namespace llvm { |
| 20 | |
| 21 | // Forward declaration. |
| 22 | class SystemZTargetMachine; |
| 23 | |
Chris Lattner | 7dd4ffc | 2009-08-02 04:27:24 +0000 | [diff] [blame^] | 24 | struct SystemZTargetAsmInfo : public TargetAsmInfo { |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 25 | explicit SystemZTargetAsmInfo(const SystemZTargetMachine &TM); |
| 26 | }; |
| 27 | |
| 28 | } // namespace llvm |
| 29 | |
| 30 | #endif |