mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
New file.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1660 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
62d6118413
commit
f165e6f7c6
3 changed files with 785 additions and 0 deletions
27
config/config.retframe.c
Normal file
27
config/config.retframe.c
Normal file
|
@ -0,0 +1,27 @@
|
|||
/* Find out if __builtin_apply()'s retframe points directly at `char'
|
||||
and `short' return values, or if it points at an `int'-casted
|
||||
version of them. */
|
||||
|
||||
/* This program exit's with status 0 if it retframe points directly at
|
||||
them. */
|
||||
|
||||
char
|
||||
foo ()
|
||||
{
|
||||
return 0x1;
|
||||
}
|
||||
|
||||
char
|
||||
bar ()
|
||||
{
|
||||
void *retframe;
|
||||
void *argframe;
|
||||
argframe = __
|
||||
retframe = __builtin_apply (foo, argframe, 96);
|
||||
__builtin_return (retframe);
|
||||
}
|
||||
|
||||
main ()
|
||||
{
|
||||
/* xxx Not finished... */
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue