diff options
author | Jason Merrill <jason@redhat.com> | 2006-03-22 00:08:48 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2006-03-22 00:08:48 -0500 |
commit | ac382b62f1e24481216e7cd58aa57633f99154dd (patch) | |
tree | 8d63b48ce3a29c62ae71652131e5e8ef4824ae21 /gcc/builtins.c | |
parent | 5b5cba1f05156ad8ba51ba09ef8ec10fdbe915d0 (diff) | |
download | gcc-ac382b62f1e24481216e7cd58aa57633f99154dd.zip gcc-ac382b62f1e24481216e7cd58aa57633f99154dd.tar.gz gcc-ac382b62f1e24481216e7cd58aa57633f99154dd.tar.bz2 |
* builtins.c (expand_builtin_fork_or_exec): Fix pasto.
From-SVN: r112275
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index ebdbb69..c4200c2 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -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); |