blob: 8c55a9671cd05d73bf69ce0651b32f7520c888aa (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
struct frk { float _Complex c; int x; };
struct faz { struct frk f; };
struct fuz { struct faz f; };
extern struct fuz foo(void);
int X;
struct frk F;
float _Complex C;
// CHECK: define void @bar
void bar(void) {
X = foo().f.f.x;
}
// CHECK: define void @bun
void bun(void) {
F = foo().f.f;
}
// CHECK: define void @ban
void ban(void) {
C = foo().f.f.c;
}
|