72466ca6ebe9127e6752d6b88c063c7c1e949aa0
[oota-llvm.git] / lib / Target / MBlaze / MBlazeFixupKinds.h
1 //===-- MBlaze/MBlazeFixupKinds.h - MBlaze Fixup Entries --------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_MBLAZE_MBLAZEFIXUPKINDS_H
11 #define LLVM_MBLAZE_MBLAZEFIXUPKINDS_H
12
13 #include "llvm/MC/MCFixup.h"
14
15 namespace llvm {
16 namespace MBlaze {
17 enum Fixups {
18   reloc_pcrel_4byte = FirstTargetFixupKind,  // 32-bit pcrel, e.g. a brlid
19   reloc_pcrel_2byte                          // 16-bit pcrel, e.g. beqid
20 };
21 }
22 }
23
24 #endif