Testcase for regparm codegen

llvm-svn: 68415
This commit is contained in:
Anton Korobeynikov 2009-04-04 00:49:38 +00:00
parent c847824e8e
commit 18e831dcc9
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
// RUN: clang-cc -triple i386-unknown-unknown %s -emit-llvm -o - | grep inreg | count 2
#define FASTCALL __attribute__((regparm(2)))
typedef struct {
int aaa;
double bbbb;
int ccc[200];
} foo;
static void FASTCALL
reduced(char b, double c, foo* d, double e, int f)
{
}
int
main(void) {
reduced(0, 0.0, 0, 0.0, 0);
}