1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-26 22:42:46 +02:00
llvm-mirror/test/CFrontend/2006-05-19-SingleEltReturn.c

24 lines
276 B
C
Raw Normal View History

2006-05-19 21:34:09 +02:00
// Test returning a single element aggregate value containing a double.
// RUN: %llvmgcc %s -S -o -
struct X {
double D;
};
struct Y {
struct X x;
};
struct Y bar();
void foo(struct Y *P) {
*P = bar();
}
struct Y bar() {
struct Y a;
a.x.D = 0;
return a;
}