blob: f913c9b451009688c804570d7fa95adb393fad26 [file] [log] [blame]
Andrew Lenharth0934ae02005-07-22 20:52:16 +00001//===- AlphaRelocations.h - Alpha Code Relocations --------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the Alpha target-specific relocation types.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef ALPHARELOCATIONS_H
15#define ALPHARELOCATIONS_H
16
17#include "llvm/CodeGen/MachineRelocation.h"
18
19namespace llvm {
20 namespace Alpha {
21 enum RelocationType {
22 reloc_literal,
23 reloc_gprellow,
24 reloc_gprelhigh,
25 reloc_gpdist,
26 };
27 }
28}
29
30#endif