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/PowerPC/PPCMCAsmInfo.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 llvm/lib/Target/PowerPC/PPCMCAsmInfo.h (limited to 'llvm/lib/Target/PowerPC/PPCMCAsmInfo.h') diff --git a/llvm/lib/Target/PowerPC/PPCMCAsmInfo.h b/llvm/lib/Target/PowerPC/PPCMCAsmInfo.h new file mode 100644 index 00000000000..3f5118b8db1 --- /dev/null +++ b/llvm/lib/Target/PowerPC/PPCMCAsmInfo.h @@ -0,0 +1,31 @@ +//=====-- PPCMCAsmInfo.h - PPC 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 DarwinMCAsmInfo class. +// +//===----------------------------------------------------------------------===// + +#ifndef PPCTARGETASMINFO_H +#define PPCTARGETASMINFO_H + +#include "llvm/MC/MCAsmInfoDarwin.h" + +namespace llvm { + + struct PPCDarwinMCAsmInfo : public DarwinMCAsmInfo { + explicit PPCDarwinMCAsmInfo(bool is64Bit); + }; + + struct PPCLinuxMCAsmInfo : public MCAsmInfo { + explicit PPCLinuxMCAsmInfo(bool is64Bit); + }; + +} // namespace llvm + +#endif -- cgit v1.2.3