]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
java_raw_api.c (ffi_java_ptrarray_to_raw): Replace FFI_ASSERT(FALSE) with FFI_ASSERT(0).
authorAndreas Tobler <a.tobler@schweiz.ch>
Thu, 23 Oct 2003 20:24:20 +0000 (22:24 +0200)
committerAndreas Tobler <andreast@gcc.gnu.org>
Thu, 23 Oct 2003 20:24:20 +0000 (22:24 +0200)
2003-10-23  Andreas Tobler  <a.tobler@schweiz.ch>

        * src/java_raw_api.c (ffi_java_ptrarray_to_raw): Replace
        FFI_ASSERT(FALSE) with FFI_ASSERT(0).

From-SVN: r72865

libffi/ChangeLog
libffi/src/java_raw_api.c

index 74c6b74c602c515801e10fd26eaba5e1d7422bfb..00ee87c6fdf9cc07a8a588248015d756652d1933 100644 (file)
@@ -1,3 +1,8 @@
+2003-10-23  Andreas Tobler  <a.tobler@schweiz.ch>
+
+       * src/java_raw_api.c (ffi_java_ptrarray_to_raw): Replace 
+       FFI_ASSERT(FALSE) with FFI_ASSERT(0).
+
 2003-10-22  David Daney  <ddaney@avtrex.com>
 
        * src/mips/ffitarget.h: Replace undefined UINT32 and friends with
index e4664112b110441480bed0a2c83a983cdb237033..5b0e34744aef5788368fbcc3992022285496e1ce 100644 (file)
@@ -217,7 +217,7 @@ ffi_java_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_raw *raw)
 
        default:
 #if FFI_SIZEOF_ARG == 8
-         FFI_ASSERT(FALSE);    /* Should have covered all cases */
+         FFI_ASSERT(0);        /* Should have covered all cases */
 #else  
          memcpy ((void*) raw->data, (void*)*args, (*tp)->size);
          raw += ALIGN ((*tp)->size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG;