blob: 298985e7e5140c765ed0f583b71965d1e61902f4 [file] [log] [blame]
Ulrich Weigand1d09d562013-05-06 16:15:19 +00001//===-- 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
13namespace 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