blob: 72345c87956c38501930cfbc16e8acf272556fc9 [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
Chris Lattner7fccbe22009-08-02 04:32:07 +000017#include "llvm/Target/TargetAsmInfo.h"
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000018
19namespace llvm {
Chris Lattnerd88f9fd2009-08-12 07:22:17 +000020 class Target;
21 class StringRef;
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000022
Chris Lattner7dd4ffc2009-08-02 04:27:24 +000023 struct SystemZTargetAsmInfo : public TargetAsmInfo {
Chris Lattnerd88f9fd2009-08-12 07:22:17 +000024 explicit SystemZTargetAsmInfo(const Target &T, const StringRef &TT);
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000025 };
26
27} // namespace llvm
28
29#endif