blob: d1d44f54ff568acf598efac90ae3bbbc9a4bd27d [file] [log] [blame]
Chris Lattnera9d9ab92010-11-15 05:57:53 +00001//===-- PPCFixupKinds.h - PPC Specific 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_PPC_PPCFIXUPKINDS_H
11#define LLVM_PPC_PPCFIXUPKINDS_H
12
13#include "llvm/MC/MCFixup.h"
14
15namespace llvm {
16namespace PPC {
17enum Fixups {
18 // fixup_ppc_br24 - 24-bit PC relative relocation for calls like 'bl'.
19 fixup_ppc_br24 = FirstTargetFixupKind,
20
21 // Marker
22 LastTargetFixupKind,
23 NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind
24};
25}
26}
27
28#endif