summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/regparm.c
blob: ac3797547d9999327f63db0e52298f795bf1d53f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -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