blob: 4c6c7f962a61d4e4ea07da58240ff54802318853 [file] [log] [blame]
Matt Wala105b7042014-08-11 19:56:19 -07001//===- subzero/crosstest/test_calling_conv.def - testing macros -*- C++ -*-===//
2//
3// The Subzero Code Generator
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 defines macros for testing the calling convention.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef TEST_CALLING_CONV_DEF
15#define TEST_CALLING_CONV_DEF
16
17#define STR(x) (#x)
18
19#define TEST_FUNC_TABLE \
20/* caller, callee, argc */ \
21X(caller_i, callee_i, 1) \
22X(caller_vvvvv, callee_vvvvv, 5) \
23X(caller_vlvlivfvdviv, callee_vlvlivfvdviv, 12) \
24// #define X(caller, callee, argc)
25
26#endif // TEST_CALLING_CONV_DEF