Initial ARM JIT support by Raul Fernandes Herbster.
[oota-llvm.git] / lib / Target / ARM / ARMRelocations.h
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