Add par_alloc_object to the major collector function table.
[mono.git] / mono / mini / mini-codegen.c
index 544114054ea3bd7cf4f452796a746fa7e198d8b8..6a58d726318c54cf2daaaf29bd49a94d6fc70574 100644 (file)
@@ -637,6 +637,9 @@ mono_print_ins_index (int i, MonoInst *ins)
        case OP_GC_LIVENESS_USE:
                printf (" R%d", (int)ins->inst_c1);
                break;
+       case OP_SEQ_POINT:
+               printf (" il: %x", (int)ins->inst_imm);
+               break;
        default:
                break;
        }
@@ -2488,8 +2491,9 @@ mono_is_regsize_var (MonoType *t)
                return FALSE;
        case MONO_TYPE_VALUETYPE:
                return FALSE;
+       default:
+               return FALSE;
        }
-       return FALSE;
 }
 
 #ifndef DISABLE_JIT