From 7b26fce23e5f733d1a614beae71d0499e78aeab1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 22 Aug 2009 20:48:53 +0000 Subject: Rename TargetAsmInfo (and its subclasses) to MCAsmInfo. llvm-svn: 79763 --- llvm/lib/Target/SystemZ/SystemZMCAsmInfo.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 llvm/lib/Target/SystemZ/SystemZMCAsmInfo.h (limited to 'llvm/lib/Target/SystemZ/SystemZMCAsmInfo.h') diff --git a/llvm/lib/Target/SystemZ/SystemZMCAsmInfo.h b/llvm/lib/Target/SystemZ/SystemZMCAsmInfo.h new file mode 100644 index 00000000000..3bebcb74e37 --- /dev/null +++ b/llvm/lib/Target/SystemZ/SystemZMCAsmInfo.h @@ -0,0 +1,29 @@ +//====-- SystemZMCAsmInfo.h - SystemZ asm properties -----------*- C++ -*--===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file contains the declaration of the SystemZMCAsmInfo class. +// +//===----------------------------------------------------------------------===// + +#ifndef SystemZTARGETASMINFO_H +#define SystemZTARGETASMINFO_H + +#include "llvm/MC/MCAsmInfo.h" + +namespace llvm { + class Target; + class StringRef; + + struct SystemZMCAsmInfo : public MCAsmInfo { + explicit SystemZMCAsmInfo(const Target &T, const StringRef &TT); + }; + +} // namespace llvm + +#endif -- cgit v1.2.3