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
c6c4a70b
Commit
c6c4a70b
authored
May 01, 2000
by
Alexandre Petit-Bianco
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(The patch contained impurities -- this should fix the situation.)
From-SVN: r33591
parent
7aa88bcf
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
13 deletions
+3
-13
gcc/java/parse.c
+0
-0
gcc/java/parse.y
+3
-13
No files found.
gcc/java/parse.c
View file @
c6c4a70b
This diff is collapsed.
Click to expand it.
gcc/java/parse.y
View file @
c6c4a70b
...
@@ -7297,19 +7297,9 @@ java_complete_expand_methods (class_decl)
...
@@ -7297,19 +7297,9 @@ java_complete_expand_methods (class_decl)
/*
First
,
do
the
ordinary
methods
.
*/
/*
First
,
do
the
ordinary
methods
.
*/
for
(
decl
=
first_decl
;
decl
;
decl
=
TREE_CHAIN
(
decl
))
for
(
decl
=
first_decl
;
decl
;
decl
=
TREE_CHAIN
(
decl
))
{
{
/*
Skip
abstract
or
native
methods
--
but
do
handle
native
/*
Skip
abstract
or
native
methods
*/
methods
when
generating
JNI
stubs
.
*/
if
(
METHOD_ABSTRACT
(
decl
)
||
METHOD_NATIVE
(
decl
))
if
(
METHOD_ABSTRACT
(
decl
)
||
(
! flag_jni && METHOD_NATIVE (decl))
||
DECL_CONSTRUCTOR_P
(
decl
)
||
DECL_CLINIT_P
(
decl
))
continue
;
continue
;
if
(
METHOD_NATIVE
(
decl
))
{
tree
body
=
build_jni_stub
(
decl
);
BLOCK_EXPR_BODY
(
DECL_FUNCTION_BODY
(
decl
))
=
body
;
}
java_complete_expand_method
(
decl
);
java_complete_expand_method
(
decl
);
}
}
...
@@ -7439,7 +7429,7 @@ java_complete_expand_method (mdecl)
...
@@ -7439,7 +7429,7 @@ java_complete_expand_method (mdecl)
{
{
block_body
=
java_complete_tree
(
block_body
);
block_body
=
java_complete_tree
(
block_body
);
if
(
!
flag_emit_xref && ! METHOD_NATIVE (mdecl)
)
if
(
!
flag_emit_xref
)
check_for_initialization
(
block_body
);
check_for_initialization
(
block_body
);
ctxp
->
explicit_constructor_p
=
0
;
ctxp
->
explicit_constructor_p
=
0
;
}
}
...
...
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