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
ac382b62
Commit
ac382b62
authored
Mar 22, 2006
by
Jason Merrill
Committed by
Jason Merrill
Mar 22, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* builtins.c (expand_builtin_fork_or_exec): Fix pasto.
From-SVN: r112275
parent
5b5cba1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
gcc/ChangeLog
+2
-0
gcc/builtins.c
+2
-2
No files found.
gcc/ChangeLog
View file @
ac382b62
2006
-
03
-
21
Jason
Merrill
<
jason
@redhat
.
com
>
*
builtins
.
c
(
expand_builtin_fork_or_exec
)
:
Fix
pasto
.
PR
middle
-
end
/
20297
*
expr
.
c
(
init_block_move_fn
)
:
Force
default
visibility
.
(
init_block_clear_fn
)
:
Likewise
.
...
...
gcc/builtins.c
View file @
ac382b62
...
...
@@ -5381,8 +5381,8 @@ expand_builtin_fork_or_exec (tree fn, tree arglist, rtx target, int ignore)
TREE_PUBLIC
(
decl
)
=
1
;
DECL_ARTIFICIAL
(
decl
)
=
1
;
TREE_NOTHROW
(
decl
)
=
1
;
DECL_VISIBILITY
(
fn
)
=
VISIBILITY_DEFAULT
;
DECL_VISIBILITY_SPECIFIED
(
fn
)
=
1
;
DECL_VISIBILITY
(
decl
)
=
VISIBILITY_DEFAULT
;
DECL_VISIBILITY_SPECIFIED
(
decl
)
=
1
;
call
=
build_function_call_expr
(
decl
,
arglist
);
return
expand_call
(
call
,
target
,
ignore
);
...
...
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