blob: 672524b5b243ba97fc15c6d0fc1213c0aa4c649d [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 {
20
Chris Lattner7dd4ffc2009-08-02 04:27:24 +000021 struct SystemZTargetAsmInfo : public TargetAsmInfo {
Chris Lattner7fccbe22009-08-02 04:32:07 +000022 explicit SystemZTargetAsmInfo();
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000023 };
24
25} // namespace llvm
26
27#endif