a3e27ae6a9
Upgrade our copy of llvm/clang to 3.4.1 release. This release contains mostly fixes, for the following upstream bugs: http://llvm.org/PR16365 http://llvm.org/PR17473 http://llvm.org/PR18000 http://llvm.org/PR18068 http://llvm.org/PR18102 http://llvm.org/PR18165 http://llvm.org/PR18260 http://llvm.org/PR18290 http://llvm.org/PR18316 http://llvm.org/PR18460 http://llvm.org/PR18473 http://llvm.org/PR18515 http://llvm.org/PR18526 http://llvm.org/PR18600 http://llvm.org/PR18762 http://llvm.org/PR18773 http://llvm.org/PR18860 http://llvm.org/PR18994 http://llvm.org/PR19007 http://llvm.org/PR19010 http://llvm.org/PR19033 http://llvm.org/PR19059 http://llvm.org/PR19144 http://llvm.org/PR19326
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
//===-- 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 MCAsmInfoDarwin class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef PPCTARGETASMINFO_H
|
|
#define PPCTARGETASMINFO_H
|
|
|
|
#include "llvm/MC/MCAsmInfoDarwin.h"
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
|
|
|
namespace llvm {
|
|
class Triple;
|
|
|
|
class PPCMCAsmInfoDarwin : public MCAsmInfoDarwin {
|
|
virtual void anchor();
|
|
public:
|
|
/// This version of the constructor is here to maintain ABI compatibility
|
|
/// with LLVM 3.4.0.
|
|
explicit PPCMCAsmInfoDarwin(bool is64Bit);
|
|
explicit PPCMCAsmInfoDarwin(bool is64Bit, const Triple&);
|
|
};
|
|
|
|
class PPCLinuxMCAsmInfo : public MCAsmInfoELF {
|
|
virtual void anchor();
|
|
public:
|
|
explicit PPCLinuxMCAsmInfo(bool is64Bit);
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
#endif
|