diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-07-28 18:29:01 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-07-28 18:29:01 +0000 |
commit | bdc5170df5807f6fc93cc450afa7df6b4c7368c9 (patch) | |
tree | 681a2d2dc9178e210efbe36052c0c6cd3b842c89 /gcc/builtins.c | |
parent | 654be25399ffa0b395f17fc013d6ef9f84719f6a (diff) | |
download | gcc-bdc5170df5807f6fc93cc450afa7df6b4c7368c9.tar.gz |
* builtins.c (expand_builtin): Typo in call to expand_builtin_ffs.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28319 138bc75d-0d04-0410-961f-82ee72b054a4
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 6cc3b1ba031..0b7d840cdfc 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -2289,7 +2289,7 @@ expand_builtin (exp, target, subtarget, mode, ignore) break; case BUILT_IN_FFS: - target = expand_builtin_ffs (exp, target, subtarget); + target = expand_builtin_ffs (arglist, target, subtarget); if (target) return target; break; |