Pass in Calling Convention to use into LowerCallTo
[oota-llvm.git] / lib / Target / Skeleton / Skeleton.h
1 //===-- Skeleton.h - Target private header file -----------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the definitions shared among the various components of the
11 // Skeleton backend.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef TARGET_SKELETON_H
16 #define TARGET_SKELETON_H
17
18 #include <iosfwd>
19
20 /// Put prototypes here for functions used to create various passes.
21
22
23 // Defines symbolic enum names for target registers.  This defines a mapping
24 // from register name to register number.  These are generated by tblgen from
25 // your target file.
26 //
27 #include "SkeletonGenRegisterNames.inc"
28
29 // Defines symbolic enum names for the target instructions.
30 //
31 #include "SkeletonGenInstrNames.inc"
32
33 #endif