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
a09f6118
Commit
a09f6118
authored
Mar 21, 2000
by
Bryce McKinlay
Committed by
Bryce McKinlay
Mar 21, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* java/lang/natClass.cc (isInstance): Use JV_CLASS, not getClass().
From-SVN: r32665
parent
afccdd1d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
libjava/ChangeLog
+1
-1
libjava/java/lang/natClass.cc
+1
-1
No files found.
libjava/ChangeLog
View file @
a09f6118
...
...
@@ -5,7 +5,7 @@
(_Jv_IsAssignableFrom): If an interface has no idt, it is not
implemented by any loaded class, so return false.
* java/lang/natClass.cc (isInstance): Use _Jv_IsAssignableFrom(),
not Class.isAssignableFrom().
not Class.isAssignableFrom().
Use JV_CLASS, not getClass().
2000-03-19 Warren Levy <warrenl@cygnus.com>
...
...
libjava/java/lang/natClass.cc
View file @
a09f6118
...
...
@@ -625,7 +625,7 @@ java::lang::Class::isInstance (jobject obj)
if
(
!
obj
||
isPrimitive
())
return
false
;
_Jv_InitClass
(
this
);
return
_Jv_IsAssignableFrom
(
this
,
obj
->
getClass
(
));
return
_Jv_IsAssignableFrom
(
this
,
JV_CLASS
(
obj
));
}
inline
jboolean
...
...
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