blob: 3123dceb039d0995c91ad5eb61eb97989ca113d9 [file] [log] [blame]
Evan Cheng148b6a42007-07-05 21:15:40 +00001//===- ARMRelocations.h - ARM Code Relocations ------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerc3dbe702007-07-17 05:56:43 +00005// This file was developed by the Raul Herbster and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
Evan Cheng148b6a42007-07-05 21:15:40 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the ARM target-specific relocation types.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef ARMRELOCATIONS_H
15#define ARMRELOCATIONS_H
16
17#include "llvm/CodeGen/MachineRelocation.h"
18
19namespace llvm {
20 namespace ARM {
21 enum RelocationType {
Evan Cheng0ff94f72007-08-07 01:37:15 +000022 reloc_arm_relative,
Evan Cheng148b6a42007-07-05 21:15:40 +000023
Evan Cheng0ff94f72007-08-07 01:37:15 +000024 reloc_arm_branch
Evan Cheng148b6a42007-07-05 21:15:40 +000025 };
26 }
27}
28
29#endif
30