blob: f6c02af467959e7c544916493c0b806add6adec1 [file] [log] [blame]
Evan Cheng148b6a42007-07-05 21:15:40 +00001//===- 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
20namespace llvm {
21 namespace ARM {
22 enum RelocationType {
23
24 };
25 }
26}
27
28#endif
29