Add ARM MC registry routines.
[oota-llvm.git] / lib / Target / ARM / MCTargetDesc / ARMMCTargetDesc.h
1 //===-- ARMMCTargetDesc.h - ARM Target Descriptions -------------*- 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 // This file provides ARM specific target descriptions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef ARMMCTARGETDESC_H
15 #define ARMMCTARGETDESC_H
16
17 namespace llvm {
18 class Target;
19
20 extern Target TheARMTarget, TheThumbTarget;
21 } // End llvm namespace
22
23 // Defines symbolic names for ARM registers.  This defines a mapping from
24 // register name to register number.
25 //
26 #define GET_REGINFO_ENUM
27 #include "ARMGenRegisterInfo.inc"
28
29 // Defines symbolic names for the ARM instructions.
30 //
31 #define GET_INSTRINFO_ENUM
32 #include "ARMGenInstrInfo.inc"
33
34 #endif