Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
5ef57049
Commit
5ef57049
authored
Feb 17, 2000
by
Tom Tromey
Committed by
Tom Tromey
Feb 17, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* jni.cc (_Jv_JNI_CallStaticMethodV): Added some assertions.
From-SVN: r32021
parent
c082d01f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
libjava/ChangeLog
+2
-0
libjava/jni.cc
+9
-0
No files found.
libjava/ChangeLog
View file @
5ef57049
2000-02-16 Tom Tromey <tromey@cygnus.com>
* jni.cc (_Jv_JNI_CallStaticMethodV): Added some assertions.
* jni.cc (_Jv_JNI_NewObjectV): Corrected assertion.
(_Jv_JNI_NewObject): Likewise.
(_Jv_JNI_NewObjectA): Likewise.
...
...
libjava/jni.cc
View file @
5ef57049
...
...
@@ -756,6 +756,9 @@ static T
_Jv_JNI_CallStaticMethodV
(
JNIEnv
*
env
,
jclass
klass
,
jmethodID
id
,
va_list
args
)
{
JvAssert
(((
id
->
accflags
)
&
java
::
lang
::
reflect
::
Modifier
::
STATIC
));
JvAssert
((
&
ClassClass
)
->
isInstance
(
klass
));
return
_Jv_JNI_CallAnyMethodV
<
T
,
static_type
>
(
env
,
NULL
,
klass
,
id
,
args
);
}
...
...
@@ -768,6 +771,9 @@ _Jv_JNI_CallStaticMethod (JNIEnv *env, jclass klass, jmethodID id, ...)
va_list
args
;
T
result
;
JvAssert
(((
id
->
accflags
)
&
java
::
lang
::
reflect
::
Modifier
::
STATIC
));
JvAssert
((
&
ClassClass
)
->
isInstance
(
klass
));
va_start
(
args
,
id
);
result
=
_Jv_JNI_CallAnyMethodV
<
T
,
static_type
>
(
env
,
NULL
,
klass
,
id
,
args
);
...
...
@@ -783,6 +789,9 @@ static T
_Jv_JNI_CallStaticMethodA
(
JNIEnv
*
env
,
jclass
klass
,
jmethodID
id
,
jvalue
*
args
)
{
JvAssert
(((
id
->
accflags
)
&
java
::
lang
::
reflect
::
Modifier
::
STATIC
));
JvAssert
((
&
ClassClass
)
->
isInstance
(
klass
));
return
_Jv_JNI_CallAnyMethodA
<
T
,
static_type
>
(
env
,
NULL
,
klass
,
id
,
args
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment