Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 1 | //===- ARMRelocations.h - ARM Code Relocations ------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | c3dbe70 | 2007-07-17 05:56:43 +0000 | [diff] [blame] | 5 | // 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 Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 7 | // |
| 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 | |
| 19 | namespace llvm { |
| 20 | namespace ARM { |
| 21 | enum RelocationType { |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 22 | reloc_arm_relative, |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 23 | |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 24 | reloc_arm_branch |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 25 | }; |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | #endif |
| 30 | |