]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
cls_multi_schar.c (main): Fix initialization error.
authorAndreas Tobler <andreast@gcc.gnu.org>
Sat, 24 Apr 2004 07:48:37 +0000 (09:48 +0200)
committerAndreas Tobler <andreast@gcc.gnu.org>
Sat, 24 Apr 2004 07:48:37 +0000 (09:48 +0200)
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

libffi/ChangeLog
libffi/testsuite/libffi.call/cls_multi_schar.c
libffi/testsuite/libffi.call/cls_multi_sshort.c
libffi/testsuite/libffi.call/cls_multi_ushort.c

index d43fd647d3da3e0460e86568cf6c48c213f8d5f3..0abac2aaa0d2c1b8cf4a013d83c78a597ee84793 100644 (file)
@@ -1,10 +1,17 @@
+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.
index 6457336661fc7497e8e48e2a25fe7db9e14c867c..30a89e6284e2ac9a126abc761ca5fe8f8d6ddb7e 100644 (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;
index eaa15d8cdc13707148934774d11ddf8e43981ea0..e19c8b85dd857b2a424e431521b5fd153cb1fcb4 100644 (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_sshort;
   cl_arg_types[1] = &ffi_type_sshort;
index e6ae9aa0755002b65380e69078450c4936b238c6..7ef7b005faef3e3e9dc02f0e8769b5b67bfcebd9 100644 (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_ushort;
   cl_arg_types[1] = &ffi_type_ushort;