summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/regparm.c
blob: fdf07ead6de7416f96df5e1daf254a20dac761be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
}
OpenPOWER on IntegriCloud