]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / llvm / lib / Target / SystemZ / SystemZCallingConv.h
1 //===-- SystemZCallingConv.h - Calling conventions for SystemZ --*- 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 SYSTEMZCALLINGCONV_H
11 #define SYSTEMZCALLINGCONV_H
12
13 namespace llvm {
14   namespace SystemZ {
15     const unsigned NumArgGPRs = 5;
16     extern const unsigned ArgGPRs[NumArgGPRs];
17
18     const unsigned NumArgFPRs = 4;
19     extern const unsigned ArgFPRs[NumArgFPRs];
20   }
21 }
22
23 #endif