diff options
author | Richard Guenther <rguenther@suse.de> | 2006-12-13 16:53:15 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2006-12-13 16:53:15 +0000 |
commit | 0f98ca0a356308694944cc1204210d0336316584 (patch) | |
tree | 56dfc8ef78601abccbc20c167462cc3e36cd0fa3 /gcc/builtins.c | |
parent | 13067f21313dfc0312dff1105f926ff5e679b0cf (diff) | |
download | gcc-0f98ca0a356308694944cc1204210d0336316584.zip gcc-0f98ca0a356308694944cc1204210d0336316584.tar.gz gcc-0f98ca0a356308694944cc1204210d0336316584.tar.bz2 |
builtins.c (expand_builtin_cexpi): Fix typo.
2006-12-13 Richard Guenther <rguenther@suse.de>
* builtins.c (expand_builtin_cexpi): Fix typo.
From-SVN: r119834
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 78b3433..d0271bc 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -2279,7 +2279,7 @@ expand_builtin_cexpi (tree exp, rtx target, rtx subtarget) /* Make sure not to fold the sincos call again. */ call = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn); expand_normal (build3 (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)), - call, arglist, NULL_TREE)); + call, narglist, NULL_TREE)); } /* Now build the proper return type. */ |