Deleted Added
full compact
PPCMCAsmInfo.h (263508) PPCMCAsmInfo.h (266715)
1//===-- PPCMCAsmInfo.h - PPC 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//===----------------------------------------------------------------------===//

--- 4 unchanged lines hidden (view full) ---

13
14#ifndef PPCTARGETASMINFO_H
15#define PPCTARGETASMINFO_H
16
17#include "llvm/MC/MCAsmInfoDarwin.h"
18#include "llvm/MC/MCAsmInfoELF.h"
19
20namespace llvm {
1//===-- PPCMCAsmInfo.h - PPC 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//===----------------------------------------------------------------------===//

--- 4 unchanged lines hidden (view full) ---

13
14#ifndef PPCTARGETASMINFO_H
15#define PPCTARGETASMINFO_H
16
17#include "llvm/MC/MCAsmInfoDarwin.h"
18#include "llvm/MC/MCAsmInfoELF.h"
19
20namespace llvm {
21class Triple;
21
22 class PPCMCAsmInfoDarwin : public MCAsmInfoDarwin {
23 virtual void anchor();
24 public:
22
23 class PPCMCAsmInfoDarwin : public MCAsmInfoDarwin {
24 virtual void anchor();
25 public:
26 /// This version of the constructor is here to maintain ABI compatibility
27 /// with LLVM 3.4.0.
25 explicit PPCMCAsmInfoDarwin(bool is64Bit);
28 explicit PPCMCAsmInfoDarwin(bool is64Bit);
29 explicit PPCMCAsmInfoDarwin(bool is64Bit, const Triple&);
26 };
27
28 class PPCLinuxMCAsmInfo : public MCAsmInfoELF {
29 virtual void anchor();
30 public:
31 explicit PPCLinuxMCAsmInfo(bool is64Bit);
32 };
33
34} // namespace llvm
35
36#endif
30 };
31
32 class PPCLinuxMCAsmInfo : public MCAsmInfoELF {
33 virtual void anchor();
34 public:
35 explicit PPCLinuxMCAsmInfo(bool is64Bit);
36 };
37
38} // namespace llvm
39
40#endif