| Andrew Lenharth | 55d0451 | 2005-07-22 20:52:16 +0000 | [diff] [blame] | 1 | //===- AlphaRelocations.h - Alpha Code Relocations --------------*- C++ -*-===// | 
|  | 2 | // | 
|  | 3 | //                     The LLVM Compiler Infrastructure | 
|  | 4 | // | 
| Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source | 
|  | 6 | // License. See LICENSE.TXT for details. | 
| Andrew Lenharth | 55d0451 | 2005-07-22 20:52:16 +0000 | [diff] [blame] | 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 |  | 
|  | 19 | namespace llvm { | 
|  | 20 | namespace Alpha { | 
|  | 21 | enum RelocationType { | 
|  | 22 | reloc_literal, | 
|  | 23 | reloc_gprellow, | 
|  | 24 | reloc_gprelhigh, | 
|  | 25 | reloc_gpdist, | 
| Chris Lattner | aa237256 | 2006-05-24 17:04:05 +0000 | [diff] [blame] | 26 | reloc_bsr | 
| Andrew Lenharth | 55d0451 | 2005-07-22 20:52:16 +0000 | [diff] [blame] | 27 | }; | 
|  | 28 | } | 
|  | 29 | } | 
|  | 30 |  | 
|  | 31 | #endif |