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
47a5d8e7
Commit
47a5d8e7
authored
Feb 26, 2003
by
Jan Hubicka
Committed by
Jan Hubicka
Feb 26, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* objc-act.c: (mark_referenced_methods): Fix compilation problem.
From-SVN: r63478
parent
cb9e4555
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/objc/objc-act.c
+2
-2
No files found.
gcc/ChangeLog
View file @
47a5d8e7
Wed
Feb
26
19
:
46
:
25
CET
2003
Jan
Hubicka
<
jh
@suse
.
cz
>
*
objc
-
act
.
c
:
(
mark_referenced_methods
)
:
Fix
compilation
problem
.
2003
-
02
-
26
Zdenek
Dvorak
<
rakdver
@atrey
.
karlin
.
mff
.
cuni
.
cz
>
2003
-
02
-
26
Zdenek
Dvorak
<
rakdver
@atrey
.
karlin
.
mff
.
cuni
.
cz
>
*
gcov
-
dump
.
c
(
print_prefix
)
:
Fix
signedness
warning
.
*
gcov
-
dump
.
c
(
print_prefix
)
:
Fix
signedness
warning
.
...
...
gcc/objc/objc-act.c
View file @
47a5d8e7
...
@@ -4041,13 +4041,13 @@ mark_referenced_methods ()
...
@@ -4041,13 +4041,13 @@ mark_referenced_methods ()
chain
=
CLASS_CLS_METHODS
(
impent
->
imp_context
);
chain
=
CLASS_CLS_METHODS
(
impent
->
imp_context
);
while
(
chain
)
while
(
chain
)
{
{
cgraph_mark_needed_node
(
cgraph_node
(
METHOD_DEFINITION
(
chain
)));
cgraph_mark_needed_node
(
cgraph_node
(
METHOD_DEFINITION
(
chain
))
,
1
);
chain
=
TREE_CHAIN
(
chain
);
chain
=
TREE_CHAIN
(
chain
);
}
}
chain
=
CLASS_NST_METHODS
(
impent
->
imp_context
);
chain
=
CLASS_NST_METHODS
(
impent
->
imp_context
);
while
(
chain
)
while
(
chain
)
{
{
cgraph_mark_needed_node
(
cgraph_node
(
METHOD_DEFINITION
(
chain
)));
cgraph_mark_needed_node
(
cgraph_node
(
METHOD_DEFINITION
(
chain
))
,
1
);
chain
=
TREE_CHAIN
(
chain
);
chain
=
TREE_CHAIN
(
chain
);
}
}
}
}
...
...
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