Commit 67781b44 by Andreas Tobler

cls_multi_schar.c (main): Fix initialization error.

2004-04-24  Andreas Tobler  <a.tobler@schweiz.ch>

	* testsuite/libffi.call/cls_multi_schar.c (main): Fix initialization
	error. Reported by Thomas Heller <theller@python.net>.
	* testsuite/libffi.call/cls_multi_sshort.c (main): Likewise.
	* testsuite/libffi.call/cls_multi_ushort.c (main): Likewise.

From-SVN: r81131
parent 03a91701
2004-04-24 Andreas Tobler <a.tobler@schweiz.ch>
* testsuite/libffi.call/cls_multi_schar.c (main): Fix initialization
error. Reported by Thomas Heller <theller@python.net>.
* testsuite/libffi.call/cls_multi_sshort.c (main): Likewise.
* testsuite/libffi.call/cls_multi_ushort.c (main): Likewise.
2004-03-20 Matthias Klose <doko@debian.org>
* src/pa/linux.S: Fix typo.
2004-03-19 Matthias Klose <doko@debian.org>
* Makefile.am: Update
* Makefile.am: Update.
* Makefile.in: Regenerate.
* src/pa/ffi.h.in: Remove.
* src/pa/ffitarget.h: New file.
......
......@@ -55,7 +55,7 @@ int main (void)
args_dbl[0] = &a;
args_dbl[1] = &b;
args_dbl[3] = NULL;
args_dbl[2] = NULL;
cl_arg_types[0] = &ffi_type_schar;
cl_arg_types[1] = &ffi_type_schar;
......
......@@ -55,7 +55,7 @@ int main (void)
args_dbl[0] = &a;
args_dbl[1] = &b;
args_dbl[3] = NULL;
args_dbl[2] = NULL;
cl_arg_types[0] = &ffi_type_sshort;
cl_arg_types[1] = &ffi_type_sshort;
......
......@@ -55,7 +55,7 @@ int main (void)
args_dbl[0] = &a;
args_dbl[1] = &b;
args_dbl[3] = NULL;
args_dbl[2] = NULL;
cl_arg_types[0] = &ffi_type_ushort;
cl_arg_types[1] = &ffi_type_ushort;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment