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 | // |
| 5 | // This file was developed by the Raul Herbster (raulherbster [at] gmail [dot] |
| 6 | // com) and is distributed under the University of Illinois Open Source License. |
| 7 | // See LICENSE.TXT for details. |
| 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | // |
| 11 | // This file defines the ARM target-specific relocation types. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef ARMRELOCATIONS_H |
| 16 | #define ARMRELOCATIONS_H |
| 17 | |
| 18 | #include "llvm/CodeGen/MachineRelocation.h" |
| 19 | |
| 20 | namespace llvm { |
| 21 | namespace ARM { |
| 22 | enum RelocationType { |
| 23 | |
| 24 | }; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | #endif |
| 29 | |