LLVM API Documentation

SystemZMCFixups.h
Go to the documentation of this file.
00001 //===-- SystemZMCFixups.h - SystemZ-specific fixup entries ------*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 
00010 #ifndef LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCFIXUPS_H
00011 #define LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCFIXUPS_H
00012 
00013 #include "llvm/MC/MCFixup.h"
00014 
00015 namespace llvm {
00016 namespace SystemZ {
00017 enum FixupKind {
00018   // These correspond directly to R_390_* relocations.
00019   FK_390_PC16DBL = FirstTargetFixupKind,
00020   FK_390_PC32DBL,
00021   FK_390_PLT16DBL,
00022   FK_390_PLT32DBL,
00023 
00024   // Marker
00025   LastTargetFixupKind,
00026   NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind
00027 };
00028 } // end namespace SystemZ
00029 } // end namespace llvm
00030 
00031 #endif