diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-22 20:48:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-22 20:48:53 +0000 |
commit | 7b26fce23e5f733d1a614beae71d0499e78aeab1 (patch) | |
tree | c952f7380295ff3ba73e21eff6c90dafd9cfdf85 /llvm/lib/Target/SystemZ/SystemZMCAsmInfo.h | |
parent | 259717287abf3ec138f6c149cbe7703315848d43 (diff) | |
download | bcm5719-llvm-7b26fce23e5f733d1a614beae71d0499e78aeab1.tar.gz bcm5719-llvm-7b26fce23e5f733d1a614beae71d0499e78aeab1.zip |
Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.
llvm-svn: 79763
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZMCAsmInfo.h')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZMCAsmInfo.h | 29 |
1 files changed, 29 insertions, 0 deletions
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 |