minix/external/bsd/llvm/dist/clang/test/CodeGen/func-return-member.c
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

26 lines
467 B
C

// RUN: %clang_cc1 -triple x86_64-apple-darwin -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-LABEL: define void @bar
void bar(void) {
X = foo().f.f.x;
}
// CHECK-LABEL: define void @bun
void bun(void) {
F = foo().f.f;
}
// CHECK-LABEL: define void @ban
void ban(void) {
C = foo().f.f.c;
}