1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/lib/Target/Alpha/AlphaRelocations.h
Andrew Lenharth 0fcc129f80 support bsr, and more .td simplification
llvm-svn: 22543
2005-07-28 18:14:47 +00:00

32 lines
826 B
C++

//===- AlphaRelocations.h - Alpha Code Relocations --------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines the Alpha target-specific relocation types.
//
//===----------------------------------------------------------------------===//
#ifndef ALPHARELOCATIONS_H
#define ALPHARELOCATIONS_H
#include "llvm/CodeGen/MachineRelocation.h"
namespace llvm {
namespace Alpha {
enum RelocationType {
reloc_literal,
reloc_gprellow,
reloc_gprelhigh,
reloc_gpdist,
reloc_bsr,
};
}
}
#endif