Deleted Added
full compact
MachORelocation.h (208954) MachORelocation.h (218893)
1//=== MachORelocation.h - Mach-O Relocation Info ----------------*- 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//===----------------------------------------------------------------------===//
9//
10// This file defines the MachORelocation class.
11//
12//===----------------------------------------------------------------------===//
13
14
15#ifndef LLVM_CODEGEN_MACHO_RELOCATION_H
16#define LLVM_CODEGEN_MACHO_RELOCATION_H
17
1//=== MachORelocation.h - Mach-O Relocation Info ----------------*- 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//===----------------------------------------------------------------------===//
9//
10// This file defines the MachORelocation class.
11//
12//===----------------------------------------------------------------------===//
13
14
15#ifndef LLVM_CODEGEN_MACHO_RELOCATION_H
16#define LLVM_CODEGEN_MACHO_RELOCATION_H
17
18#include "llvm/System/DataTypes.h"
18#include "llvm/Support/DataTypes.h"
19
20namespace llvm {
21
22 /// MachORelocation - This struct contains information about each relocation
23 /// that needs to be emitted to the file.
24 /// see <mach-o/reloc.h>
25 class MachORelocation {
26 uint32_t r_address; // offset in the section to what is being relocated

--- 30 unchanged lines hidden ---
19
20namespace llvm {
21
22 /// MachORelocation - This struct contains information about each relocation
23 /// that needs to be emitted to the file.
24 /// see <mach-o/reloc.h>
25 class MachORelocation {
26 uint32_t r_address; // offset in the section to what is being relocated

--- 30 unchanged lines hidden ---