* builtins.c (expand_builtin_fork_or_exec): Fix pasto.
From-SVN: r112275
This commit is contained in:
parent
5b5cba1f05
commit
ac382b62f1
@ -1,5 +1,7 @@
|
|||||||
2006-03-21 Jason Merrill <jason@redhat.com>
|
2006-03-21 Jason Merrill <jason@redhat.com>
|
||||||
|
|
||||||
|
* builtins.c (expand_builtin_fork_or_exec): Fix pasto.
|
||||||
|
|
||||||
PR middle-end/20297
|
PR middle-end/20297
|
||||||
* expr.c (init_block_move_fn): Force default visibility.
|
* expr.c (init_block_move_fn): Force default visibility.
|
||||||
(init_block_clear_fn): Likewise.
|
(init_block_clear_fn): Likewise.
|
||||||
|
@ -5381,8 +5381,8 @@ expand_builtin_fork_or_exec (tree fn, tree arglist, rtx target, int ignore)
|
|||||||
TREE_PUBLIC (decl) = 1;
|
TREE_PUBLIC (decl) = 1;
|
||||||
DECL_ARTIFICIAL (decl) = 1;
|
DECL_ARTIFICIAL (decl) = 1;
|
||||||
TREE_NOTHROW (decl) = 1;
|
TREE_NOTHROW (decl) = 1;
|
||||||
DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
|
DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
|
||||||
DECL_VISIBILITY_SPECIFIED (fn) = 1;
|
DECL_VISIBILITY_SPECIFIED (decl) = 1;
|
||||||
call = build_function_call_expr (decl, arglist);
|
call = build_function_call_expr (decl, arglist);
|
||||||
|
|
||||||
return expand_call (call, target, ignore);
|
return expand_call (call, target, ignore);
|
||||||
|
Loading…
Reference in New Issue
Block a user