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
8b6013ad
Commit
8b6013ad
authored
Oct 03, 2001
by
Bryce McKinlay
Committed by
Bryce McKinlay
Oct 03, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* resolve.cc (_Jv_PrepareClass): Fix typos in vtable layout.
From-SVN: r45988
parent
caa3f65c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
libjava/ChangeLog
+4
-0
libjava/resolve.cc
+2
-2
No files found.
libjava/ChangeLog
View file @
8b6013ad
2001-10-03 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* resolve.cc (_Jv_PrepareClass): Fix typos in vtable layout.
2001-10-02 Mark Wielaard <mark@klomp.org>
* Makefile.am (core_java_source_files): add InheritableThreadLocal
...
...
libjava/resolve.cc
View file @
8b6013ad
...
...
@@ -732,9 +732,9 @@ _Jv_PrepareClass(jclass klass)
throw_internal_error
(
"vtable problem..."
);
if
(
clz
->
interpreted_methods
[
i
]
==
0
)
vtable
->
set_method
(
i
,
(
void
*
)
&
_Jv_abstractMethodError
);
vtable
->
set_method
(
i
ndex
,
(
void
*
)
&
_Jv_abstractMethodError
);
else
vtable
->
set_method
(
i
,
this_meth
->
ncode
);
vtable
->
set_method
(
i
ndex
,
this_meth
->
ncode
);
}
}
...
...
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