2013-05-06 16:15:19 +00:00
|
|
|
//===-- SystemZCallingConv.h - Calling conventions for SystemZ --*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZCALLINGCONV_H
|
|
|
|
#define LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZCALLINGCONV_H
|
2013-05-06 16:15:19 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2014-03-06 10:38:30 +00:00
|
|
|
namespace SystemZ {
|
|
|
|
const unsigned NumArgGPRs = 5;
|
|
|
|
extern const unsigned ArgGPRs[NumArgGPRs];
|
2013-05-06 16:15:19 +00:00
|
|
|
|
2014-03-06 10:38:30 +00:00
|
|
|
const unsigned NumArgFPRs = 4;
|
|
|
|
extern const unsigned ArgFPRs[NumArgFPRs];
|
|
|
|
} // end namespace SystemZ
|
|
|
|
} // end namespace llvm
|
2013-05-06 16:15:19 +00:00
|
|
|
|
|
|
|
#endif
|