Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
3d47e9ca
Commit
3d47e9ca
authored
Oct 02, 2004
by
Kaz Kojima
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* testsuite/libffi.call/negint.c: New test case.
From-SVN: r88421
parent
12d3155f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
0 deletions
+58
-0
libffi/ChangeLog
+4
-0
libffi/testsuite/libffi.call/negint.c
+54
-0
No files found.
libffi/ChangeLog
View file @
3d47e9ca
2004-10-02 Kaz Kojima <kkojima@gcc.gnu.org>
* testsuite/libffi.call/negint.c: New test case.
2004-09-14 H.J. Lu <hongjiu.lu@intel.com>
PR libgcj/17465
...
...
libffi/testsuite/libffi.call/negint.c
0 → 100644
View file @
3d47e9ca
/* Area: ffi_call
Purpose: Check that negative integers are passed correctly.
Limitations: none.
PR: none.
Originator: From the original ffitest.c */
/* { dg-do run } */
/* { dg-options -O2 } */
#include "ffitest.h"
static
int
checking
(
int
a
,
short
b
,
signed
char
c
)
{
int
i
;
return
(
a
<
0
&&
b
<
0
&&
c
<
0
);
}
int
main
(
void
)
{
ffi_cif
cif
;
ffi_type
*
args
[
MAX_ARGS
];
void
*
values
[
MAX_ARGS
];
ffi_arg
rint
;
signed
int
si
;
signed
short
ss
;
signed
char
sc
;
args
[
0
]
=
&
ffi_type_sint
;
values
[
0
]
=
&
si
;
args
[
1
]
=
&
ffi_type_sshort
;
values
[
1
]
=
&
ss
;
args
[
2
]
=
&
ffi_type_schar
;
values
[
2
]
=
&
sc
;
/* Initialize the cif */
CHECK
(
ffi_prep_cif
(
&
cif
,
FFI_DEFAULT_ABI
,
3
,
&
ffi_type_sint
,
args
)
==
FFI_OK
);
si
=
-
6
;
ss
=
-
12
;
sc
=
-
1
;
checking
(
si
,
ss
,
sc
);
ffi_call
(
&
cif
,
FFI_FN
(
checking
),
&
rint
,
values
);
printf
(
"%d vs %d
\n
"
,
(
int
)
rint
,
checking
(
si
,
ss
,
sc
));
CHECK
(
rint
!=
0
);
exit
(
0
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment