Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 1 | //=====-- SparcTargetAsmInfo.h - Sparc asm properties ---------*- C++ -*--====// |
| 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. |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the declaration of the SparcTargetAsmInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef SPARCTARGETASMINFO_H |
| 15 | #define SPARCTARGETASMINFO_H |
| 16 | |
Chris Lattner | 8d4a0a3 | 2009-08-02 04:27:24 +0000 | [diff] [blame] | 17 | #include "llvm/Target/TargetAsmInfo.h" |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +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; |
Chris Lattner | 8d4a0a3 | 2009-08-02 04:27:24 +0000 | [diff] [blame] | 22 | struct SparcELFTargetAsmInfo : public TargetAsmInfo { |
Chris Lattner | a7ac47c | 2009-08-12 07:22:17 +0000 | [diff] [blame^] | 23 | explicit SparcELFTargetAsmInfo(const Target &T, const StringRef &TT); |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 24 | }; |
| 25 | |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 26 | } // namespace llvm |
| 27 | |
| 28 | #endif |