* builtins.c (expand_builtin): Typo in call to expand_builtin_ffs.
authorFranz Sirl <Franz.Sirl-kernel@lauterbach.com>
Wed, 28 Jul 1999 18:29:01 +0000 (18:29 +0000)
committerRichard Henderson <rth@gcc.gnu.org>
Wed, 28 Jul 1999 18:29:01 +0000 (11:29 -0700)
From-SVN: r28319

gcc/ChangeLog
gcc/builtins.c

index 7dad4a763a7115394dfaaae78f9d03e580391c41..23c08e62e96aa4b9d4ea6e6dcb26a3905c21d1a3 100644 (file)
@@ -1,3 +1,7 @@
+Wed Jul 28 11:28:04 1999  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
+
+       * builtins.c (expand_builtin): Typo in call to expand_builtin_ffs.
+
 Wed Jul 28 11:23:48 1999  Richard Henderson  <rth@cygnus.com>
 
        * pa.c (hppa_builtin_saveregs):  Use get_varargs_alias_set
index 6cc3b1ba0312e06d5bf5fe3ab90c71e6bea6973b..0b7d840cdfc939e0d6d553f0f294ef00e718a420 100644 (file)
@@ -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;