* Time for -Werror
authortwisti <none@none>
Thu, 23 Jun 2005 13:19:41 +0000 (13:19 +0000)
committertwisti <none@none>
Thu, 23 Jun 2005 13:19:41 +0000 (13:19 +0000)
src/vm/jit/verify/typeinfo.c

index 9a86d773e8ee0e192660f079f6aab4011c928696..2c085ecdc19f33e76d35f403dcffc6a4365deaeb 100644 (file)
@@ -26,7 +26,7 @@
 
    Authors: Edwin Steiner
 
-   $Id: typeinfo.c 2792 2005-06-22 22:07:33Z edwin $
+   $Id: typeinfo.c 2803 2005-06-23 13:19:41Z twisti $
 
 */
 
 typevector *
 typevectorset_copy(typevector *src,int k,int size)
 {
-       TYPEINFO_ASSERT(src);
-       
        typevector *dst = DNEW_TYPEVECTOR(size);
        
+       TYPEINFO_ASSERT(src);
+       
        memcpy(dst,src,TYPEVECTOR_SIZE(size));
        dst->k = k;
        if (src->alt)