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
67bbb1e1
Commit
67bbb1e1
authored
Nov 29, 2004
by
Eric Botcazou
Committed by
Eric Botcazou
Nov 29, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* link.cc (link_symbol_table): Do not use intptr_t.
From-SVN: r91472
parent
c6f9f83b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
libjava/ChangeLog
+4
-0
libjava/link.cc
+2
-2
No files found.
libjava/ChangeLog
View file @
67bbb1e1
2004
-
11
-
29
Eric
Botcazou
<
ebotcazou
@
libertysurf
.
fr
>
*
link
.
cc
(
link_symbol_table
):
Do
not
use
intptr_t
.
2004
-
11
-
28
Mark
Wielaard
<
mark
@
klomp
.
org
>
*
mauve
-
libgcj
:
Disable
SpinnerListModel
,
SwingUtilities
and
...
...
libjava/link.cc
View file @
67bbb1e1
...
...
@@ -1073,7 +1073,7 @@ _Jv_Linker::link_symbol_table (jclass klass)
if
(
found
)
{
klass
->
itable
->
addresses
[
index
*
2
]
=
cls
;
klass
->
itable
->
addresses
[
index
*
2
+
1
]
=
(
void
*
)(
intptr_t
)
i
;
klass
->
itable
->
addresses
[
index
*
2
+
1
]
=
(
void
*
)(
unsigned
long
)
i
;
if
(
debug_link
)
{
fprintf
(
stderr
,
" interfaces[%d] = %p (interface %s@%p : %s(%s))
\n
"
,
...
...
@@ -1085,7 +1085,7 @@ _Jv_Linker::link_symbol_table (jclass klass)
(
const
char
*
)
signature
->
chars
());
fprintf
(
stderr
,
" [%d] = offset %d
\n
"
,
index
+
1
,
(
int
)(
intptr_t
)
klass
->
itable
->
addresses
[
index
*
2
+
1
]);
(
int
)(
unsigned
long
)
klass
->
itable
->
addresses
[
index
*
2
+
1
]);
}
}
...
...
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