Deleted Added
full compact
MCFixupKindInfo.h (218893) MCFixupKindInfo.h (239462)
1//===-- llvm/MC/MCFixupKindInfo.h - Fixup Descriptors -----------*- 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) ---

13namespace llvm {
14
15/// MCFixupKindInfo - Target independent information on a fixup kind.
16struct MCFixupKindInfo {
17 enum FixupKindFlags {
18 /// Is this fixup kind PCrelative? This is used by the assembler backend to
19 /// evaluate fixup values in a target independent manner when possible.
20 FKF_IsPCRel = (1 << 0),
1//===-- llvm/MC/MCFixupKindInfo.h - Fixup Descriptors -----------*- 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) ---

13namespace llvm {
14
15/// MCFixupKindInfo - Target independent information on a fixup kind.
16struct MCFixupKindInfo {
17 enum FixupKindFlags {
18 /// Is this fixup kind PCrelative? This is used by the assembler backend to
19 /// evaluate fixup values in a target independent manner when possible.
20 FKF_IsPCRel = (1 << 0),
21
21
22 /// Should this fixup kind force a 4-byte aligned effective PC value?
23 FKF_IsAlignedDownTo32Bits = (1 << 1)
24 };
25
26 /// A target specific name for the fixup kind. The names will be unique for
27 /// distinct kinds on any given target.
28 const char *Name;
29

--- 14 unchanged lines hidden ---
22 /// Should this fixup kind force a 4-byte aligned effective PC value?
23 FKF_IsAlignedDownTo32Bits = (1 << 1)
24 };
25
26 /// A target specific name for the fixup kind. The names will be unique for
27 /// distinct kinds on any given target.
28 const char *Name;
29

--- 14 unchanged lines hidden ---