blob: 6963980bc2e235f5a1b6781d5a3704efe17b76b4 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- ARMRelocations.h - ARM Code Relocations ------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Chenga7b3e7c2007-08-07 01:37:15 +000022 reloc_arm_relative,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023
Evan Chenga7b3e7c2007-08-07 01:37:15 +000024 reloc_arm_branch
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025 };
26 }
27}
28
29#endif
30