mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
82743daacf
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28396 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
276 B
C
24 lines
276 B
C
// 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;
|
|
}
|
|
|