LLVM API Documentation
00001 //===- AlphaRelocations.h - Alpha Code Relocations --------------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file was developed by the LLVM research group and is distributed under 00006 // the University of Illinois Open Source License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file defines the Alpha target-specific relocation types. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef ALPHARELOCATIONS_H 00015 #define ALPHARELOCATIONS_H 00016 00017 #include "llvm/CodeGen/MachineRelocation.h" 00018 00019 namespace llvm { 00020 namespace Alpha { 00021 enum RelocationType { 00022 reloc_literal, 00023 reloc_gprellow, 00024 reloc_gprelhigh, 00025 reloc_gpdist, 00026 reloc_bsr, 00027 }; 00028 } 00029 } 00030 00031 #endif