aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMFixupKinds.h
blob: 3d91d52a6b66df147d98289ae9bc316bf6c212b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//===-- ARM/ARMFixupKinds.h - ARM Specific Fixup Entries --------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_ARM_ARMFIXUPKINDS_H
#define LLVM_ARM_ARMFIXUPKINDS_H

#include "llvm/MC/MCFixup.h"

namespace llvm {
namespace ARM {
enum Fixups {
  // fixup_arm_pcrel_12 - 12-bit PC relative relocation for symbol addresses
  fixup_arm_pcrel_12 = FirstTargetFixupKind,
  // fixup_arm_vfp_pcrel_12 - 12-bit PC relative relocation for symbol addresses
  // used in VFP instructions where the lower 2 bits are not encoded (so it's
  // encoded as an 8-bit immediate).
  fixup_arm_vfp_pcrel_12
};
}
}

#endif