Mostly trivial enum fixes
[deliverable/binutils-gdb.git] / gdb / jv-lang.c
index 0d635c7896b420648cf8d4829fd9dce4cefc9d65..c842a01d51051276b011460b22c8501fa43c8289 100644 (file)
@@ -610,7 +610,7 @@ get_java_object_header_size (struct gdbarch *gdbarch)
 int
 is_object_type (struct type *type)
 {
-  CHECK_TYPEDEF (type);
+  type = check_typedef (type);
   if (TYPE_CODE (type) == TYPE_CODE_PTR)
     {
       struct type *ttype = check_typedef (TYPE_TARGET_TYPE (type));
@@ -1098,7 +1098,7 @@ const struct op_print java_op_print_tab[] =
   {"*", UNOP_IND, PREC_PREFIX, 0},
   {"++", UNOP_PREINCREMENT, PREC_PREFIX, 0},
   {"--", UNOP_PREDECREMENT, PREC_PREFIX, 0},
-  {NULL, 0, 0, 0}
+  {NULL, OP_NULL, PREC_PREFIX, 0}
 };
 
 enum java_primitive_types
This page took 0.025273 seconds and 4 git commands to generate.