blob: 98b50d4978408cc43b207a3056584328fa655d06 [file] [log] [blame]
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +00001//====-- 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 Korobeynikov32b7d5b2009-07-16 13:27:25 +000017#include "llvm/Target/ELFTargetAsmInfo.h"
18
19namespace llvm {
20
21 // Forward declaration.
22 class SystemZTargetMachine;
23
24 struct SystemZTargetAsmInfo : public ELFTargetAsmInfo {
25 explicit SystemZTargetAsmInfo(const SystemZTargetMachine &TM);
26 };
27
28} // namespace llvm
29
30#endif