blob: beea52b671ab300ea97c8f3a903d85cdbabc80c8 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- ARMRelocations.h - ARM Code Relocations ------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
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.
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
19namespace llvm {
20 namespace ARM {
21 enum RelocationType {
22
23 };
24 }
25}
26
27#endif
28