diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-06 14:06:28 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-06 14:06:28 +0000 |
commit | 166395e2fc518ad1e278115f0c1719067a1da3f4 (patch) | |
tree | 390a2bc735b983cbb52ca13781a307fdb24fb488 /libjava/defineclass.cc | |
parent | 043b6c62cbadb2bc02b0fb76a0fb2185148f8d2b (diff) | |
download | gcc-166395e2fc518ad1e278115f0c1719067a1da3f4.tar.gz |
* defineclass.cc (_Jv_ClassReader::prepare_pool_entry): Use
verify_field_signature and verify_method_signature, not
_Jv_VerifyFieldSignature and _Jv_VerifyMethodSigntature.
(_Jv_ClassReader::handleField): Likewise.
(_Jv_ClassReader::handleMethod): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81563 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/defineclass.cc')
-rw-r--r-- | libjava/defineclass.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/defineclass.cc b/libjava/defineclass.cc index 156efb5b1d7..26606815836 100644 --- a/libjava/defineclass.cc +++ b/libjava/defineclass.cc @@ -776,9 +776,9 @@ _Jv_ClassReader::prepare_pool_entry (int index, unsigned char this_tag) name_index, type_index); if (this_tag == JV_CONSTANT_Fieldref) - _Jv_VerifyFieldSignature (pool_data[type_index].utf8); + verify_field_signature (pool_data[type_index].utf8); else - _Jv_VerifyMethodSignature (pool_data[type_index].utf8); + verify_method_signature (pool_data[type_index].utf8); _Jv_Utf8Const* name = pool_data[name_index].utf8; @@ -1107,7 +1107,7 @@ void _Jv_ClassReader::handleField (int field_no, } if (verify) - _Jv_VerifyFieldSignature (sig); + verify_field_signature (sig); // field->type is really a jclass, but while it is still // unresolved we keep an _Jv_Utf8Const* instead. @@ -1244,7 +1244,7 @@ void _Jv_ClassReader::handleMethod else verify_identifier (method->name); - _Jv_VerifyMethodSignature (method->signature); + verify_method_signature (method->signature); for (int i = 0; i < mth_index; ++i) { |