blob: e7bf8954f6428443d219a4af71bb92907be6cf40 [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
Chris Lattner7dd4ffc2009-08-02 04:27:24 +000024 struct SystemZTargetAsmInfo : public TargetAsmInfo {
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000025 explicit SystemZTargetAsmInfo(const SystemZTargetMachine &TM);
26 };
27
28} // namespace llvm
29
30#endif