Skip to content

Commit c521ec9

Browse files
author
thk123
committed
Use correct type for reference array
1 parent 3a8b34d commit c521ec9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbmc/src/java_bytecode/java_types.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ typet java_type_from_char(char t)
209209
case 'f': return java_float_type();
210210
case 'd': return java_double_type();
211211
case 'z': return java_boolean_type();
212-
case 'a': return java_reference_type(void_typet());
212+
case 'a': return java_lang_object_type();
213213
default:
214214
UNREACHABLE;
215215
}

0 commit comments

Comments
 (0)