* expr.c (build_java_arraystore_check): Fix formatting.

From-SVN: r50167
This commit is contained in:
Bryce McKinlay 2002-02-28 23:27:09 +00:00 committed by Bryce McKinlay
parent e005418551
commit 2060fd4ca6
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-03-01 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* expr.c (build_java_arraystore_check): Fix formatting.
2002-02-28 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* expr.c (java_array_data_offset): Removed function.

View File

@ -823,7 +823,7 @@ build_java_arraystore_check (array, object)
abort ();
if (!flag_store_check)
return build1 (NOP_EXPR, array_type_p, array);
return build1 (NOP_EXPR, array_type_p, array);
/* No check is needed if the element type is final or is itself an array.
Also check that element_type matches object_type, since in the bytecode
@ -831,7 +831,7 @@ build_java_arraystore_check (array, object)
rather than its declared type. */
if (element_type == object_type
&& (TYPE_ARRAY_P (TREE_TYPE (element_type))
|| CLASS_FINAL (element_type)))
|| CLASS_FINAL (element_type)))
return build1 (NOP_EXPR, array_type_p, array);
/* Avoid the check if OBJECT was just loaded from the same array. */
@ -849,7 +849,7 @@ build_java_arraystore_check (array, object)
target = TREE_OPERAND (target, 0);
if (source == target)
return build1 (NOP_EXPR, array_type_p, array);
return build1 (NOP_EXPR, array_type_p, array);
}
/* Build an invocation of _Jv_CheckArrayStore */