mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Testcase for
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20070507/049387.html git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36956 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fd98dc9a76
commit
9fbc5b247c
13
test/CFrontend/2007-05-07-NestedStructReturn.c
Normal file
13
test/CFrontend/2007-05-07-NestedStructReturn.c
Normal file
@ -0,0 +1,13 @@
|
||||
// RUN: %llvmgcc %s -S -fnested-functions -o - | grep {sret *%agg.result}
|
||||
|
||||
struct X { int m, n; };
|
||||
|
||||
struct X p(int n) {
|
||||
struct X c(int m) {
|
||||
struct X x;
|
||||
x.m = m;
|
||||
x.n = n;
|
||||
return x;
|
||||
}
|
||||
return c(n);
|
||||
}
|
Loading…
Reference in New Issue
Block a user